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

22 lines
622 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName checkBizCall
*/
export interface IUnionCheckBizCallParams extends ICommonAPIParams {
corpId: string;
}
/**
*
* @apiName checkBizCall
*/
export interface IUnionCheckBizCallResult {
isSupport: boolean;
}
/**
*
* @apiName checkBizCall
*/
export declare function checkBizCall$(params: IUnionCheckBizCallParams): Promise<IUnionCheckBizCallResult>;
export default checkBizCall$;