You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
interface ApiConfig {
|
|
scheme: string;
|
|
host: string;
|
|
port: number | null;
|
|
}
|
|
interface XDLConfig {
|
|
api: ApiConfig;
|
|
developerTool: string;
|
|
}
|
|
declare const config: XDLConfig;
|
|
export default config;
|