Skip to content
1 min read · 57 words

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

ParameterType
invocationBinaryInvocation & { command: string; }

Returns

Promise<BinaryInvocation & { command: string; }>