@kayahr/di
    Preparing search index...

    Interface TokenOptions<Value>

    Options for registrations identified only by injection tokens.

    interface TokenOptions<Value = unknown> {
        scope?: Scope;
        token?: InjectionToken<Value> | InjectionToken<Value>[];
    }

    Type Parameters

    • Value = unknown

      The provided dependency type.

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    scope?: Scope

    Optional scope owning this registration. Defaults to the shared root scope.

    Optional injection token (or tokens) of this registration.