import type { DbUrl } from "./DbUrl"; import type { InstanceId } from "./InstanceId"; import type { MultiCommunityId } from "./MultiCommunityId"; import type { PersonId } from "./PersonId"; export type MultiCommunity = { id: MultiCommunityId; creator_id: PersonId; instance_id: InstanceId; name: string; title?: string; /** * A shorter, one-line summary. */ summary?: string; local: boolean; deleted: boolean; ap_id: DbUrl; last_refreshed_at: string; published_at: string; updated_at?: string; subscribers: number; subscribers_local: number; communities: number; /** * A sidebar in markdown. */ sidebar?: string; };