Skip to content

BasicDependency

github-actions[bot] edited this page Nov 17, 2024 · 2 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:78.

Generic Parameters

  • T - The basic dependency type.

See also

Clone this wiki locally