$ExecutorParams: $.Shape<(
    | {
        type: "MaxMemoryPages";
        value: number;
    }
    | {
        type: "StackLogicalMax";
        value: number;
    }
    | {
        type: "StackNativeMax";
        value: number;
    }
    | {
        type: "PrecheckingMaxMemory";
        value: bigint;
    }
    | {
        type: "PvfPrepTimeout";
        value: readonly ["Precheck" | "Prepare", bigint];
    }
    | {
        type: "PvfExecTimeout";
        value: readonly ["Backing" | "Approval", bigint];
    }
    | {
        type: "WasmExtBulkMemory";
    })[], (
    | {
        type: "MaxMemoryPages";
        value: number;
    }
    | {
        type: "StackLogicalMax";
        value: number;
    }
    | {
        type: "StackNativeMax";
        value: number;
    }
    | {
        type: "PrecheckingMaxMemory";
        value: bigint;
    }
    | {
        type: "PvfPrepTimeout";
        value: ["Precheck" | "Prepare", bigint];
    }
    | {
        type: "PvfExecTimeout";
        value: ["Backing" | "Approval", bigint];
    }
    | {
        type: "WasmExtBulkMemory";
    })[]> = ...

Deterministically serialized execution environment semantics

Represents an arbitrary semantics of an arbitrary execution environment, so should be kept as abstract as possible.