import type { CommunityModeratorView } from "./CommunityModeratorView"; import type { CommunityView } from "./CommunityView"; import type { LanguageId } from "./LanguageId"; import type { Site } from "./Site"; /** * The community response. */ export type GetCommunityResponse = { community_view: CommunityView; site?: Site; moderators: Array; discussion_languages: Array; };