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

22 lines
568 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName checkAuth
*/
export interface IUnionCheckAuthParams extends ICommonAPIParams {
authType: string;
}
/**
*
* @apiName checkAuth
*/
export interface IUnionCheckAuthResult {
granted: boolean;
}
/**
*
* @apiName checkAuth
*/
export declare function checkAuth$(params: IUnionCheckAuthParams): Promise<IUnionCheckAuthResult>;
export default checkAuth$;