Skip to content

SandboxResumption

type SandboxResumption = {
data: unknown;
position: number;
state?: unknown;
};

Defined in: instance/instance.ts:50

The caller’s answer to the interrupt a previous run of the same script ended with: position is the interrupted call’s slot in the call log (from SandboxInterrupt.position), and data/state become that call’s ActionResumption when the replayed script re-executes it.

data: unknown;

Defined in: instance/instance.ts:52


position: number;

Defined in: instance/instance.ts:51


optional state?: unknown;

Defined in: instance/instance.ts:53