env.d.ts 248 B

123456789
  1. import { IENV } from './sdk';
  2. export { ENV_ENUM, APP_TYPE, ENV_ENUM_SUB } from './sdk';
  3. declare global {
  4. interface Navigator {
  5. swuserAgent: any;
  6. }
  7. }
  8. export declare const getUA: () => string;
  9. export declare const getENV: () => IENV;