@djodjonx/wiredi
    Preparing search index...

    Interface TsyringeLifecycle

    Minimal interface for tsyringe's Lifecycle enum

    interface TsyringeLifecycle {
        ContainerScoped: unknown;
        ResolutionScoped: unknown;
        Singleton: unknown;
        Transient: unknown;
    }
    Index

    Properties

    ContainerScoped: unknown

    Single instance per child container

    ResolutionScoped: unknown

    Single instance per resolution tree

    Singleton: unknown

    Single instance throughout the application

    Transient: unknown

    New instance on each resolution