server/types/entities/notification.ts
2023-09-12 10:48:10 -10:00

13 lines
264 B
TypeScript

import { APIAccount } from "./account";
import { APIStatus } from "./status";
export interface APINotification {
account: APIAccount;
created_at: string;
id: string;
status?: APIStatus;
type: APINotificationType;
}
export type APINotificationType = string;