Interface: BinarySandbox
Defined in: src/batteries/sandbox/executor.ts:10
Command wrapping contract used by the executor adapter.
Methods
wrap()
ts
wrap(invocation: BinaryInvocation & {
command: string;
}): Promise<BinaryInvocation & {
command: string;
}>;Defined in: src/batteries/sandbox/executor.ts:12
Wrap an invocation without executing it.
Parameters
| Parameter | Type |
|---|---|
invocation | BinaryInvocation & { command: string; } |
Returns
Promise<BinaryInvocation & { command: string; }>