rp-data-chart
Version:
Rabbitpre data-chart components lib
18 lines (17 loc) • 433 B
TypeScript
export interface Config {
[key: string]: any;
env: 'dev' | 'test' | 'prod';
apiPrefix: string;
requestTimeout: number;
chinaCitiesGeoScript: {
script: string;
globalName: string;
};
}
declare function get(key: string): any;
declare function set(newConfig: Partial<Config>): void;
declare const _default: {
get: typeof get;
set: typeof set;
};
export default _default;