Skip to content

Type Alias: SeedNotification

ts
type SeedNotification = 
  | {
  comment: SeedComment;
  id: number;
  kind: "mention" | "reply";
  read: boolean;
}
  | {
  id: number;
  kind: "private_message";
  message: SeedPrivateMessage;
  read: boolean;
};

Defined in: src/testing/seed.ts:31