import type { EnvType } from './types' export type { EnvType } /** 获取当前运行环境,基础库不支持 getAccountInfoSync 时回退 develop */ export const ENV: EnvType = (() => { try { return wx.getAccountInfoSync().miniProgram.envVersion as EnvType } catch { return 'develop' } })()