/** * 设备系统信息 */ export declare function os(): string; /** * 设备移动还是PC */ export declare function plat(): "mobile" | "pc"; /** * 设备分辨率 */ export declare function ds(): string; /** * 原生代码调用 */ export declare function nc(): Promise; /** * 设备信息 */ export declare function di(): {}; /** * 用户代理字符串 */ export declare function ua(): string; /** * 设备型号(根据userAgent解析获得) */ export declare function br(): string; declare type ExplorerInfo = { type: string; version: string; }; /** * 获取游览器信息 */ export declare function getExplorerInfo(): ExplorerInfo; export {}; //# sourceMappingURL=sys.d.ts.map