ut.d.ts 559 B

1234567891011121314151617181920212223242526
  1. /**
  2. * 上报埋点 请求参数定义
  3. * @apiName biz.util.ut
  4. */
  5. export interface IBizUtilUtParams {
  6. /** gmkey */
  7. key: string;
  8. /** gokey, jsapi层填obj */
  9. value?: {
  10. [key: string]: string;
  11. };
  12. }
  13. /**
  14. * 上报埋点 返回结果定义
  15. * @apiName biz.util.ut
  16. */
  17. export interface IBizUtilUtResult {
  18. [key: string]: any;
  19. }
  20. /**
  21. * 上报埋点
  22. * @apiName biz.util.ut
  23. * @supportVersion pc: 3.0.0 ios: 2.4.0 android: 2.4.0
  24. */
  25. export declare function ut$(params: IBizUtilUtParams): Promise<IBizUtilUtResult>;
  26. export default ut$;