Interface IFunctionEvaluatorContext
Hierarchy
-
IFunctionEvaluatorContext
Properties
userContext
userContext: any
Methods
GetAllFunctions
- GetAllFunctions(): Promise<object>
evaluate
- evaluate(name: string, options: object): Promise<any>
-
Parameters
-
name: string
-
options: object
Returns Promise<any>
getGlobal
- getGlobal(name: string): any
getGlobalKeys
- getGlobalKeys(): string[]
getLocal
- getLocal(name: string): any
setGlobal
- setGlobal(name: string, value: any): void
setLocal
- setLocal(name: string, value: any): void
Returns an object describing the user making the function evaluation request.