MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
export declare const apiName = "biz.oa.authorityVerify";
/**
 * 校验页面是否有权限设置工作首页链接 请求参数定义
 * @apiName biz.oa.authorityVerify
 */
export interface IBizOaAuthorityVerifyParams {
    [key: string]: any;
}
/**
 * 校验页面是否有权限设置工作首页链接 返回结果定义
 * @apiName biz.oa.authorityVerify
 */
export interface IBizOaAuthorityVerifyResult {
    [key: string]: any;
}
/**
 * 校验页面是否有权限设置工作首页链接
 * @apiName biz.oa.authorityVerify
 * @supportVersion  ios: 4.1 android: 4.1
 */
export declare function authorityVerify$(params: IBizOaAuthorityVerifyParams): Promise<IBizOaAuthorityVerifyResult>;
export default authorityVerify$;