form-graph
    Preparing search index...

    Type Alias RootScope

    An ABSOLUTE scope — the escape hatch out of scope inheritance. Plain scope values APPEND to the path accumulated down the mount tree; a RootScope sets the path from the root instead. rootScope() with no parts detaches the field entirely (bare key — global memory).

    type RootScope = {
        __scopeRoot: true;
        parts: readonly ScopeValue[];
    }
    Index
    __scopeRoot: true
    parts: readonly ScopeValue[]