@logixjs/core
    Preparing search index...

    Variable resolveConst

    resolve: <Id, Svc>(
        tag: Tag<Id, Svc>,
        options?: RootResolveOptions,
    ) => Effect<Svc, never, any> = Impl.resolve

    Type Declaration

      • <Id, Svc>(
            tag: Tag<Id, Svc>,
            options?: RootResolveOptions,
        ): Effect<Svc, never, any>
      • resolve

        Resolve a Tag explicitly from the root provider of the current Runtime tree (ServiceTag / ModuleTag).

        Semantics:

        • Always reads rootContext; unaffected by nearer-scope Layer/Context overrides.
        • For ModuleTag: expresses root singleton semantics only (not used for multi-instance selection).

        Type Parameters

        • Id
        • Svc

        Parameters

        • tag: Tag<Id, Svc>
        • Optionaloptions: RootResolveOptions

        Returns Effect<Svc, never, any>