doum
9 天以前 d5810177a4e77ea273971e51dd150bd84906de6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export declare const apiName = "biz.util.timestamp";
/**
 * 获取服务器时间 请求参数定义
 * @apiName biz.util.timestamp
 */
export interface IBizUtilTimestampParams {
    [key: string]: any;
}
/**
 * 获取服务器时间 返回结果定义
 * @apiName biz.util.timestamp
 */
export interface IBizUtilTimestampResult {
    [key: string]: any;
}
/**
 * 获取服务器时间
 * @apiName biz.util.timestamp
 * @supportVersion  ios: 2.9.0 android: 2.9.0
 */
export declare function timestamp$(params: IBizUtilTimestampParams): Promise<IBizUtilTimestampResult>;
export default timestamp$;