UNPKG

@inversifyjs/core

Version:

InversifyJs core package

8 lines 454 B
import { type Newable } from '@inversifyjs/common'; import { type BindingScope } from './BindingScope.js'; import { type bindingTypeValues } from './BindingType.js'; import { type ScopedBinding } from './ScopedBinding.js'; export interface InstanceBinding<TActivated> extends ScopedBinding<typeof bindingTypeValues.Instance, BindingScope, TActivated> { readonly implementationType: Newable<TActivated>; } //# sourceMappingURL=InstanceBinding.d.ts.map