@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
7 lines (6 loc) • 355 B
TypeScript
import { InjectorDependencyContext } from '../../injector/injector';
import { RuntimeException } from './runtime.exception';
import { Module } from '../../injector/module';
export declare class UndefinedDependencyException extends RuntimeException {
constructor(type: string, undefinedDependencyContext: InjectorDependencyContext, module?: Module);
}