Hilo3d API - v2.0.0-alpha.8
    Preparing search index...

    Interface StageSystemDescriptor

    Immutable metadata compiled before System setup begins.

    interface StageSystemDescriptor {
        after?: readonly string[];
        apiVersion: 1;
        before?: readonly string[];
        id: string;
        provides?: readonly StageSystemService<unknown>[];
        requires?: readonly string[];
        version: string;
    }
    Index
    after?: readonly string[]

    Optional System identities that this System runs after when they are present.

    apiVersion: 1

    Exact Hilo3D Stage System ABI expected by this System.

    before?: readonly string[]

    Optional System identities that this System runs before when they are present.

    id: string

    Stable, package-qualified System identity.

    provides?: readonly StageSystemService<unknown>[]

    Complete set of typed services published during setup.

    requires?: readonly string[]

    System identities that must be present, initialized first, and destroyed last.

    version: string

    System implementation version for diagnostics.