doum
9 天以前 60e49d600834344ae1b18357e76df74fbe160527
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
export declare const apiName = "internal.util.chooseRegion";
/**
 * 选择地区 请求参数定义
 * @apiName internal.util.chooseRegion
 */
export interface IInternalUtilChooseRegionParams {
    /** 是否需要返回区信息 (4.6.37 新增) */
    needDistrict?: boolean;
    /** 区域信息 */
    region: string;
    [key: string]: any;
}
/**
 * 选择地区 返回结果定义
 * @apiName internal.util.chooseRegion
 */
export interface IInternalUtilChooseRegionResult {
    [key: string]: any;
}
/**
 * 选择地区
 * @apiName internal.util.chooseRegion
 * @supportVersion  ios: 3.5.0 android: 3.5.0
 */
export declare function chooseRegion$(params: IInternalUtilChooseRegionParams): Promise<IInternalUtilChooseRegionResult>;
export default chooseRegion$;