import type { PostId } from "./PostId"; import type { PostNotificationsMode } from "./PostNotificationsMode"; /** * Change notification settings for a post */ export type EditPostNotifications = { post_id: PostId; mode: PostNotificationsMode; };