UNPKG

@baizey/dependency-injection

Version:
9 lines (8 loc) 343 B
import { Key } from '../ServiceCollection'; import { DependencyError } from './DependencyError'; import { DependencyErrorType } from './types'; export declare class DuplicateDependencyError extends Error implements DependencyError { readonly type: DependencyErrorType; readonly lifetime: string; constructor(lifetime: Key<any>); }