UNPKG

@inversifyjs/core

Version:

InversifyJs core package

9 lines 436 B
import { ServiceIdentifier } from '@inversifyjs/common'; import { PlanBindingNode } from './PlanBindingNode'; import { PlanServiceNodeParent } from './PlanServiceNodeParent'; export interface PlanServiceNode { readonly bindings: PlanBindingNode | PlanBindingNode[] | undefined; readonly parent: PlanServiceNodeParent | undefined; readonly serviceIdentifier: ServiceIdentifier; } //# sourceMappingURL=PlanServiceNode.d.ts.map