UNPKG

421 BTypeScriptView Raw
1import { ServiceIdentifier } from '../types/service-identifier.type';
2/**
3 * Thrown when DI cannot inject value into property decorated by @Inject decorator.
4 */
5export declare class CannotInstantiateValueError extends Error {
6 name: string;
7 /** Normalized identifier name used in the error message. */
8 private normalizedIdentifier;
9 get message(): string;
10 constructor(identifier: ServiceIdentifier);
11}