1
2
3
4
5
6
7
8
9
10
11
12
13
| export type IL10n = import("./interfaces").IL10n;
| /**
| * @implements {IL10n}
| */
| export class GenericL10n implements IL10n {
| constructor(lang: any);
| _lang: any;
| _ready: Promise<any>;
| getLanguage(): Promise<any>;
| getDirection(): Promise<any>;
| get(key: any, args?: null, fallback?: any): Promise<any>;
| translate(element: any): Promise<any>;
| }
|
|