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

    Interface SweepMembership

    A launch's membership in a parameter sweep. parameters are the per-member key/value pairs (the sweep's independent variables) recorded as spawn:param:* tags and, on a real box, surfaced as PARAM_* env vars. Serialized to the same spawn:sweep-* tags the Go spawn sweep writes.

    interface SweepMembership {
        id: string;
        index: number;
        name: string;
        parameters: Record<string, string>;
        size: number;
    }
    Index
    id: string
    index: number

    0-based index of this member within the sweep.

    name: string
    parameters: Record<string, string>
    size: number

    Total members in the sweep.