UNPKG

214 BTypeScriptView Raw
1interface ApiConfig {
2 scheme: string;
3 host: string;
4 port: number | null;
5}
6interface XDLConfig {
7 api: ApiConfig;
8 developerTool: string;
9}
10declare const config: XDLConfig;
11export default config;