doum
昨天 ee300eca8f8414604cd94aa29f2b80e7d32413f6
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
30
31
32
/**
 * 下拉控件 请求参数定义
 * @apiName biz.util.chosen
 */
export interface IBizUtilChosenParams {
    /** 下拉控件的内容 */
    source: Array<{
        /** 显示文本 */
        key: string;
        /** 文本对应的值 */
        value: string;
    }>;
    /** 默认选中的key */
    selectedKey: string;
}
/**
 * 下拉控件 返回结果定义
 * @apiName biz.util.chosen
 */
export interface IBizUtilChosenResult {
    /** 显示文本 */
    key: string;
    /** 文本对应的值 */
    value: string;
}
/**
 * 下拉控件
 * @apiName biz.util.chosen
 * @supportVersion  ios: 2.4.0 android: 2.4.0
 */
export declare function chosen$(params: IBizUtilChosenParams): Promise<IBizUtilChosenResult>;
export default chosen$;