Interface IInterpreterOptions

Interface defining the configuration options for the interpreter.

interface IInterpreterOptions {
    doNotLog: boolean;
    parser: ParserOptions;
}

Properties

Properties

doNotLog: boolean

If true, the interpreter will not log any output. Default is false.

Configuration options for the Parser instance used by the interpreter.