server/types/entities/notification.ts

13 lines
264 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
import { APIAccount } from "./account";
import { APIStatus } from "./status";
2023-09-11 05:31:08 +02:00
2023-09-12 22:48:10 +02:00
export interface APINotification {
account: APIAccount;
2023-09-11 05:46:20 +02:00
created_at: string;
id: string;
2023-09-12 22:48:10 +02:00
status?: APIStatus;
type: APINotificationType;
2023-09-11 05:31:08 +02:00
}
2023-09-11 05:46:20 +02:00
2023-09-12 22:48:10 +02:00
export type APINotificationType = string;