@lcap/nasl
Version:
NetEase Application Specific Language
14 lines • 518 B
TypeScript
import { Logic, View, Process } from '..';
type wordScope = {
Param?: string[];
Return?: string[];
Variable?: string[];
Constant?: string[];
Logic?: string[];
};
export declare function getLogicScopeWords(logic: Logic): wordScope;
export declare function getViewScopeWords(view: View): wordScope;
export declare function getProcessScopeWords(process: Process): wordScope;
export declare function combineScope(a: wordScope, b: wordScope): wordScope;
export {};
//# sourceMappingURL=getScope.d.ts.map