Vinyl
    Preparing search index...

    Variable ExternalDependencyConst

    ExternalDependency: typeof ExternalDependency = ...

    A symbol used to mark dependency factories as externally owned.

    If a Factory has this symbol as a property, it will be considered to be owned by a parent container and will not be disposed regardless of whether it implements Disposable.

    This prevents the dependency injection container from taking ownership of dependencies that should be managed elsewhere.

    const provider = () => someExternalService
    provider[ExternalDependency] = true