zhizhi/node_modules/dingtalk-jsapi/api/union/singleSelect.d.ts

27 lines
644 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName singleSelect
*/
export interface IUnionSingleSelectParams extends ICommonAPIParams {
source: {
key: string;
value: string;
}[];
selectedKey?: string;
}
/**
*
* @apiName singleSelect
*/
export interface IUnionSingleSelectResult {
key: string;
value: string;
}
/**
*
* @apiName singleSelect
*/
export declare function singleSelect$(params: IUnionSingleSelectParams): Promise<IUnionSingleSelectResult>;
export default singleSelect$;