UNPKG

vite-uni-dev-tool

Version:

vite-uni-dev-tool, debug, uni-app, 一处编写,到处调试

23 lines 660 B
/** * 获取当前页面地址 * * @return {*} */ export declare function getCurrentPagePath(): string; /** 截图 */ export declare function screenshot(): void; export declare function captureScreen(option: { success?: () => void; }): void; export interface DeepEqualOptions { maxDepth?: number; } export declare function deepEqual(a: unknown, b: unknown, options?: DeepEqualOptions): boolean; /** * 获取平台信息 * 为什么不直接用 getSystemInfoSync ? * 微信控制台警告 * TODO: 是否需要做更多的判断??? */ export declare function getPlatform(): string; //# sourceMappingURL=utils.d.ts.map