Interface: SandboxedExecutorOptions
Defined in: src/batteries/sandbox/executor.ts:18
Configuration for the sandboxed binary executor.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
bypass? | readonly | (cmd: string) => boolean | Command-only opt-out. This is deliberately never passed argv to the predicate. | src/batteries/sandbox/executor.ts:24 |
inner | readonly | BinaryExecutor | Underlying executor receiving the wrapped invocation. | src/batteries/sandbox/executor.ts:22 |
onSandbox? | readonly | SandboxEventSink | Loud audit sink; bypass is observability, not enforcement. | src/batteries/sandbox/executor.ts:26 |
sandbox | readonly | BinarySandbox | Command wrapper used for non-bypassed invocations. | src/batteries/sandbox/executor.ts:20 |