UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

17 lines (16 loc) • 615 B
import { InjectorDependencyContext } from '../../injector/injector'; import { Module } from '../../injector/module'; import { RuntimeException } from './runtime.exception'; export declare class UnknownDependenciesException extends RuntimeException { readonly type: string | symbol; readonly context: InjectorDependencyContext; readonly metadata?: { id: string; } | undefined; readonly moduleRef: { id: string; } | undefined; constructor(type: string | symbol, context: InjectorDependencyContext, moduleRef?: Module, metadata?: { id: string; } | undefined); }