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

27 lines
697 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName choosePhonebook
*/
export interface IUnionChoosePhonebookParams extends ICommonAPIParams {
title: string;
maxUsers: number;
multiple: boolean;
limitTips: string;
}
/**
*
* @apiName choosePhonebook
*/
export interface IUnionChoosePhonebookResult {
name: string;
mobile: string;
mediaId: string;
}
/**
*
* @apiName choosePhonebook
*/
export declare function choosePhonebook$(params: IUnionChoosePhonebookParams): Promise<IUnionChoosePhonebookResult>;
export default choosePhonebook$;