/** * The API allows you to evaluate scripts from a GlideRecord field */ export declare class GlideScopedEvaluator { /** * Evaluates a script from a GlideRecord field. variables parameter is optional */ evaluateScript(grObj?: any, scriptField?: string, variables?: any): any; /** * Gets a variable from a GlideScopedEvaluator object */ getVariable(name?: string): any; /** * Puts a variable into the GlideScopedEvaluator object */ putVariable(name?: string, value?: any): void; reset(): void; withEnforcedSecurity(enforceSecurity?: boolean): any; withInterpretedMode(interpreted?: boolean): any; withQuickEvalSupported(supportQuickEval?: boolean): any; withReturnError(returnError?: boolean): any; withSandboxVariables(isSandboxVariables?: boolean): any; constructor(); }