import { FrameworkVariableService } from '../frmVariableService/framework-variable.service'; export declare class FuncsService { private frmVariableService; private allgspfuncs; private allfuncinvoks; constructor(frmVariableService: FrameworkVariableService); /** * 缓存所有功能 */ cacheAllFuncs(funcs: any[]): void; /** * 获取所有缓存的功能 */ getAllCachedFuncs(): any; /** * 获取某功能 */ getCachedFunc(funcId: string): any; cacheAllFuncInvoks(invoks: any[]): void; getAllCachedFuncInvoks(): any; }