MrShi
8 天以前 3845c70bd7ce578b65522ad020a8dc524316b4d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export declare const addWatchParamsDeal: (params: any) => any;
export declare const addDefaultCorpIdParamsDeal: (params: any) => any;
export declare const genDefaultParamsDealFn: (defaultParams: object) => (params: any) => any;
export declare const forceChangeParamsDealFn: (forceParams: object) => (params: any) => any;
export declare const genBoolResultDealFn: (boolKeyList: string[]) => (params: any) => any;
export declare const genBizStoreParamsDealFn: (params: any) => any;
export declare const setStorageParamsDeal: (params: any) => any;
export declare const getStorageParamsDeal: (params: any) => any;
export declare const removeStorageParamsDeal: (params: any) => any;
export declare const scanParamsDeal: (params: any) => any;
export declare const getNetWorkTypeResultDeal: (result: any) => {
    netWorkAvailable: boolean;
    netWorkType: any;
    newWorkAvailable?: undefined;
} | {
    newWorkAvailable: boolean;
    netWorkAvailable?: undefined;
    netWorkType?: undefined;
};
/**
 *
 * @returns 当前环境的全局变量
 * webview默认document,context默认主context的this
 */
export declare function getGlobalSelf(): typeof window;