server/types/entities/notification.ts
2023-11-22 18:10:37 -10:00

13 lines
274 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;