wirebox
    Preparing search index...

    Type Alias Context<TOrigin>

    The context which is provided inside preconstructors and providers.

    type Context<TOrigin extends Class = Class> = {
        circuit: Circuit;
        dependent?: Class;
        target: TOrigin;
    }

    Type Parameters

    • TOrigin extends Class = Class

      The origin class of the context.

    Index

    Properties

    circuit: Circuit

    The circuit which is currently resolving the target.

    dependent?: Class

    The class which depends on the target and the reason why it is being resolved.

    This can be undefined if the target is being resolved directly using tap or tapAsync.

    target: TOrigin

    The target class which is currently being resolved.