UNPKG

@hufe921/canvas-editor

Version:
13 lines (12 loc) 398 B
import { ILang } from '../../interface/i18n/I18n'; import { DeepPartial } from '../../interface/Common'; export declare class I18n { private currentLocale; private langMap; constructor(locale: string); registerLangMap(locale: string, lang: DeepPartial<ILang>): void; getLocale(): string; setLocale(locale: string): void; getLang(): ILang; t(path: string): string; }