UNPKG

@elsikora/cladi

Version:

Zero-dependency TypeScript DI toolkit with typed tokens and scoped lifecycles.

8 lines 350 B
import type { IProviderRegistration } from './registration.interface'; export interface IProviderLookup<TOwnerScope = unknown> { lookupPath: Array<string>; owner: TOwnerScope; registration?: IProviderRegistration<unknown>; registrations?: ReadonlyArray<IProviderRegistration<unknown>>; } //# sourceMappingURL=lookup.interface.d.ts.map