mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
13 lines
243 B
TypeScript
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;
|