MrShi
5 天以前 acf90ad8e6bea592124541324467360cef565ff5
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
26
27
28
29
export declare const apiName = "biz.util.ut";
/**
 * 上报埋点 请求参数定义
 * @apiName biz.util.ut
 */
export interface IBizUtilUtParams {
    /** gmkey */
    key: string;
    /** gokey, jsapi层填obj */
    value?: {
        [key: string]: string;
    };
    /** 允许钉钉在后台时也发送埋点,而不是丢弃;目前仅安卓消费 */
    allowBackground?: boolean;
}
/**
 * 上报埋点 返回结果定义
 * @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$;