Type Alias EvalOpts

EvalOpts: {
    assumeExclusive?: boolean;
    debug?: boolean;
    timeoutMs?: number;
}

Options for code evaluation

Type declaration

  • Optional ReadonlyassumeExclusive?: boolean

    If true (default), it assumes that anything received from the board is a response to the eval

  • Optional Readonlydebug?: boolean

    If true, executed code is traced

  • Optional ReadonlytimeoutMs?: number

    Milliseconds to wait before giving up on well-formed reply. 5 seconds is the default.