zhizhi/node_modules/dingtalk-jsapi/lib/apiHelper.d.ts

26 lines
1.1 KiB
TypeScript
Raw Normal View History

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默认documentcontext默认主context的this
*/
export declare function getGlobalSelf(): typeof window;