server/types/entities-2/notification.ts
2024-04-14 00:53:21 -10:00

13 lines
289 B
TypeScript

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