firefish/packages/megalodon/src/entities/notification.ts
2023-07-24 17:11:10 -07:00

16 lines
292 B
TypeScript

/// <reference path="account.ts" />
/// <reference path="status.ts" />
namespace Entity {
export type Notification = {
account: Account;
created_at: string;
id: string;
status?: Status;
reaction?: Reaction;
type: NotificationType;
};
export type NotificationType = string;
}