UNPKG

pdfjs-dist

Version:

Generic build of Mozilla's PDF.js library.

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>; }