env.d.ts 359 B

1234567891011
  1. import { IENV, IPlatformConfig } from './sdk';
  2. export { ENV_ENUM, APP_TYPE, ENV_ENUM_SUB } from './sdk';
  3. declare global {
  4. var __dingtalk_jsapi_top_platfrom_config__: IPlatformConfig | undefined;
  5. interface Navigator {
  6. swuserAgent: any;
  7. }
  8. var my: any;
  9. }
  10. export declare const getUA: () => string;
  11. export declare const getENV: () => IENV;