@tsclean/core
Version:
Plugin for API Rest Full development, based on Clean Architecture, IoC and Dependency Injection.
16 lines • 578 B
TypeScript
import { RuntimeException } from './runtime';
import { Module, InjectorDependencyContext } from '../../core';
export declare class UnknownDependenciesException extends RuntimeException {
readonly type: string | symbol;
readonly context: InjectorDependencyContext;
readonly metadata?: {
id: string;
};
readonly moduleRef: {
id: string;
} | undefined;
constructor(type: string | symbol, context: InjectorDependencyContext, moduleRef?: Module, metadata?: {
id: string;
});
}
//# sourceMappingURL=unknown-dependencies.d.ts.map