Saxonberg Server API
    Preparing search index...

    Construction options for a ManualBuildStep.

    interface ManualBuildStepOptions {
        actor: Stuff & Engaged;
        durationMs: number;
        host?: Stuff | null;
        onAbort?: (reason: keyof AbortReasonRegistry) => void;
        onComplete: () => void;
        slots: readonly EngagementSlot[];
    }
    Index

    Properties

    actor: Stuff & Engaged
    durationMs: number
    host?: Stuff | null

    Eager host-destruction hook target; defaults to the actor.

    onAbort?: (reason: keyof AbortReasonRegistry) => void

    Applied if the step aborts; default no-op (nothing was mutated yet).

    onComplete: () => void

    Applied when the step completes (matter move / buffer bank / mint).

    slots: readonly EngagementSlot[]