/** * Коды языков для локализации */ export type TLocalisationLanguages = string[]; type TLocalisationTemplateFn = (...args: never[]) => string; /** * Объект источника для локализации */ export type TLocalisationSource = Record>; export {};