server/types/entities/notification.ts
Jesse Wierzbinski 636f2ffff8
Fix ESLint
2023-09-10 17:46:20 -10:00

13 lines
243 B
TypeScript

import { Account } from "./account";
import { Status } from "./status";
export interface Notification {
account: Account;
created_at: string;
id: string;
status?: Status;
type: NotificationType;
}
export type NotificationType = string;