zhizhi/node_modules/dingtalk-jsapi/api/biz/util/checkAuth.d.ts

22 lines
606 B
TypeScript
Raw Normal View History

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