@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
13 lines (12 loc) • 388 B
TypeScript
/** Represents the structure of a content locale object */
interface ContentLocale {
/** Language code (ISO 639-1) */
code: string;
/** Display name of the language */
name: string;
/** Corresponding JSON filename in the locales directory */
file: string;
}
/** List of supported content locales */
export declare const contentLocales: ContentLocale[];
export {};