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

22 lines
540 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName multiSelect
*/
export interface IUnionMultiSelectParams extends ICommonAPIParams {
options: string[];
selectOption?: string[];
}
/**
*
* @apiName multiSelect
*/
export interface IUnionMultiSelectResult {
}
/**
*
* @apiName multiSelect
*/
export declare function multiSelect$(params: IUnionMultiSelectParams): Promise<IUnionMultiSelectResult>;
export default multiSelect$;