doum
昨天 ee300eca8f8414604cd94aa29f2b80e7d32413f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * 自定义选人组件 请求参数定义
 * @apiName biz.customContact.choose
 */
export interface IBizCustomContactChooseParams {
    [key: string]: any;
}
/**
 * 自定义选人组件 返回结果定义
 * @apiName biz.customContact.choose
 */
export interface IBizCustomContactChooseResult {
    [key: string]: any;
}
/**
 * 自定义选人组件
 * @apiName biz.customContact.choose
 * @supportVersion  pc: 3.0.0 ios: 2.5.2 android: 2.5.2
 */
export declare function choose$(params: IBizCustomContactChooseParams): Promise<IBizCustomContactChooseResult>;
export default choose$;