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

22 lines
586 B
TypeScript
Raw Normal View History

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