zhizhi/node_modules/dingtalk-jsapi/api/biz/util/ut.d.ts

27 lines
559 B
TypeScript
Raw Normal View History

/**
*
* @apiName biz.util.ut
*/
export interface IBizUtilUtParams {
/** gmkey */
key: string;
/** gokey, jsapi层填obj */
value?: {
[key: string]: string;
};
}
/**
*
* @apiName biz.util.ut
*/
export interface IBizUtilUtResult {
[key: string]: any;
}
/**
*
* @apiName biz.util.ut
* @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0
*/
export declare function ut$(params: IBizUtilUtParams): Promise<IBizUtilUtResult>;
export default ut$;