spawn-ts API reference - v0.6.0
    Preparing search index...

    Interface ParamSpec

    A parameter-sweep specification. defaults apply to every member; params is an explicit list of per-member overrides; grid (when present) is expanded into the cartesian product of its named value lists and appended to params. A spec must yield at least one member (a non-empty params or grid).

    interface ParamSpec {
        defaults?: ParamSet;
        grid?: Record<string, ParamValue[]>;
        params?: ParamSet[];
    }
    Index
    defaults?: ParamSet
    grid?: Record<string, ParamValue[]>
    params?: ParamSet[]