UNPKG

658 BTypeScriptView Raw
1import { CloudSettings, IConfig } from './definitions';
2/**
3 * @hidden
4 */
5export declare class Config implements IConfig {
6 /**
7 * The cloud config.
8 */
9 settings: CloudSettings;
10 /**
11 * @private
12 */
13 private urls;
14 /**
15 * Register a new config.
16 */
17 register(settings: CloudSettings): void;
18 /**
19 * Get a value from the core settings. You should use `settings` attribute
20 * directly for core settings and other settings.
21 *
22 * @deprecated
23 *
24 * @param name - The settings key to get.
25 */
26 get(name: string): any;
27 /**
28 * @hidden
29 */
30 getURL(name: string): string;
31}