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

23 lines
620 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName getAuthCodeV2
*/
export interface IUnionGetAuthCodeV2Params extends ICommonAPIParams {
corpId: string;
clientId: string;
}
/**
*
* @apiName getAuthCodeV2
*/
export interface IUnionGetAuthCodeV2Result {
code: string;
}
/**
*
* @apiName getAuthCodeV2
*/
export declare function getAuthCodeV2$(params: IUnionGetAuthCodeV2Params): Promise<IUnionGetAuthCodeV2Result>;
export default getAuthCodeV2$;