- export interface RequestGetConfigResult {
- host?: string;
- mediaHost?: string;
- }
- declare function getConfig(): Promise<RequestGetConfigResult>;
- declare namespace getConfig {
- var version: {
- android: string;
- ios: string;
- pc: string;
- };
- }
- export default getConfig;
|