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

22 lines
539 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName getAuthCode
*/
export interface IUnionGetAuthCodeParams extends ICommonAPIParams {
corpId: string;
}
/**
*
* @apiName getAuthCode
*/
export interface IUnionGetAuthCodeResult {
authCode: string;
}
/**
*
* @apiName getAuthCode
*/
export declare function getAuthCode$(params: IUnionGetAuthCodeParams): Promise<IUnionGetAuthCodeResult>;
export default getAuthCode$;