UNPKG

@cocalc/cdn

Version:

Files that CoCalc uses that would be natural in various contexts to get from a CDN

14 lines (13 loc) 382 B
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>; }