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;