UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

23 lines (22 loc) 755 B
import { NestContainer } from './container'; import { InstanceWrapper } from './instance-wrapper'; import { InstanceToken } from './module'; export interface InstanceLink<T = any> { token: InstanceToken; wrapperRef: InstanceWrapper<T>; collection: Map<any, InstanceWrapper>; moduleId: string; } export declare class InstanceLinksHost { private readonly container; private readonly instanceLinks; constructor(container: NestContainer); get<T = any>(token: InstanceToken): InstanceLink<T>; get<T = any>(token: InstanceToken, options?: { moduleId?: string; each?: boolean; }): InstanceLink<T> | Array<InstanceLink<T>>; private initialize; private addLink; private getInstanceNameByToken; }