Skip to content

BasicDependency

github-actions[bot] edited this page Feb 4, 2025 · 4 revisions
API / BasicDependency<T> alias

Represents a basic dependency where the constructor does not require a resolver or any other dependencies to create an instance.

type BasicDependency<T> = {
  new (): T;
};

Source reference: src/dependencies/IDependencyResolver.ts:160.

Generic Parameters

  • T - The basic dependency type.

See also

Clone this wiki locally