import { ICommonParams, IHeaders } from '../../interfaces'; /** * 当前登录用户对此页面是否有权限查看 * @param msg 系统参数,fd.data.msg * @param headers 系统参数,fd.data.hearders * @param productid 项目productid * @param clienttype 端点类型,web:3,h5:2,xcx:9 */ export default function check(msg: ICommonParams, headers: IHeaders, productid: string, clienttype: string): Promise<{ result: boolean; auth_code: number; }>;