import type { LanguageId } from "./LanguageId"; /** * A language. */ export type Language = { id: LanguageId; code: string; name: string; };