getConfig.d.ts 300 B

12345678910111213
  1. export interface RequestGetConfigResult {
  2. host?: string;
  3. mediaHost?: string;
  4. }
  5. declare function getConfig(): Promise<RequestGetConfigResult>;
  6. declare namespace getConfig {
  7. var version: {
  8. android: string;
  9. ios: string;
  10. pc: string;
  11. };
  12. }
  13. export default getConfig;