UNPKG

@bitrix24/b24ui-nuxt

Version:

Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE

13 lines (12 loc) 462 B
import type { Locale, Direction } from '../types/locale'; import type { DeepPartial } from '../types/utils'; interface DefineLocaleOptions<M> { name: string; code: string; locale: string; dir?: Direction; messages: M; } export declare function defineLocale<M>(options: DefineLocaleOptions<M>): Locale<M>; export declare function extendLocale<M>(locale: Locale<M>, options: Partial<DefineLocaleOptions<DeepPartial<M>>>): Locale<M>; export {};