server/types/entities/notification.ts

13 lines
243 B
TypeScript
Raw Normal View History

2023-09-11 05:46:20 +02:00
import { Account } from "./account";
import { Status } from "./status";
2023-09-11 05:31:08 +02:00
2023-09-11 05:46:20 +02:00
export interface Notification {
account: Account;
created_at: string;
id: string;
status?: Status;
type: NotificationType;
2023-09-11 05:31:08 +02:00
}
2023-09-11 05:46:20 +02:00
export type NotificationType = string;