@djodjonx/wiredi
    Preparing search index...

    Interface TypedPartialConfig<C, Tokens, Listeners>

    A partial builder configuration with strictly inferred token types.

    interface TypedPartialConfig<C, Tokens, Listeners = readonly EventEntry[]> {
        __listeners?: Listeners;
        __tokens?: Tokens;
        injections?: InjectionConfig<C>;
        listeners?: EventConfig;
    }

    Type Parameters

    • C

      The context type.

    • Tokens

      The tuple of allowed tokens.

    • Listeners = readonly EventEntry[]

      The tuple of listener entries.

    Hierarchy (View Summary)

    Index

    Properties

    __listeners?: Listeners
    __tokens?: Tokens
    injections?: InjectionConfig<C>
    listeners?: EventConfig