environment.d.ts 681 Bytes
Newer Older
liang ce committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/** 是否是在DingTalk容器内 */
export declare const isInDingTalk: boolean;
/** 是否在微信终端 */
export declare const isWeixin: boolean;
/** 是否是android终端 */
export declare const isAndroid: boolean;
/** 是否在android Dingtalk环境下 */
export declare const isAndroidDingTalk: boolean;
/** 是否是iOS终端 */
export declare const isIOS: boolean;
/** 是否在iOS Dingtalk环境下 */
export declare const isIOSDingTalk: boolean;
/** 是否在PC Dingtalk环境下 */
export declare const isPCDingTalk: boolean;
/** 是否是XueXi客户端下 */
export declare const isXueXi: boolean;
/** 是否是移动终端 */
export declare const isMobile: boolean;