import type { CommentView } from "./CommentView"; import type { ModlogView } from "./ModlogView"; import type { PostView } from "./PostView"; import type { PrivateMessageView } from "./PrivateMessageView"; export type NotificationData = ({ type_: "comment"; } & CommentView) | ({ type_: "post"; } & PostView) | ({ type_: "private_message"; } & PrivateMessageView) | ({ type_: "mod_action"; } & ModlogView);