[]
type JsExecutionConfig = object;
JavaScript execution configuration.
optional after: (args) => void;
Handler function which will be called after JS action execution finished.
void
optional before: (args) => void;
Handler function which will be called before JS action execution started. You can modify the args.jsCode property inside this handler function. Set the args.cancel property to true if you wish to prevent further JS action execution;
void
optional disable: boolean;
Set this setting to true if you want to permanently disable the JS action executor.