import type { CommunityId } from "./CommunityId"; import type { CommunityNotificationsMode } from "./CommunityNotificationsMode"; /** * Change notification settings for a community */ export type EditCommunityNotifications = { community_id: CommunityId; mode: CommunityNotificationsMode; };