mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
13 lines
264 B
TypeScript
13 lines
264 B
TypeScript
import { APIAccount } from "./account";
|
|
import { APIStatus } from "./status";
|
|
|
|
export interface APINotification {
|
|
account: APIAccount;
|
|
created_at: string;
|
|
id: string;
|
|
status?: APIStatus;
|
|
type: APINotificationType;
|
|
}
|
|
|
|
export type APINotificationType = string;
|