/** * 组织角色验证 * @returns {string|boolean} string 验证失败错误提示 false 验证通过 */ export declare const orgAuthPass: () => string | boolean; /** * 设置全局缓存前缀 * @param str 缓存前缀 */ export declare const setGlobalTitle: (str: string) => void; /** * 设置全局缓存类型 * @param type "session" | "local" */ export declare const setGlobalCacheType: (type: "session" | "local") => void;