UNPKG

481 BTypeScriptView Raw
1export class AppOptions {
2 static get(name: any): any;
3 static getAll(kind?: null): any;
4 static set(name: any, value: any): void;
5 static setAll(options: any): void;
6 static remove(name: any): void;
7 /**
8 * @ignore
9 */
10 static _hasUserOptions(): boolean;
11}
12export const compatibilityParams: any;
13export namespace OptionKind {
14 const VIEWER: number;
15 const API: number;
16 const WORKER: number;
17 const PREFERENCE: number;
18}