UNPKG

@carlosv2/glue

Version:

Dependency injection library that stays out of the way

10 lines 485 B
import type { Container } from '../container.js'; import { RunningContext } from '../context/index.js'; export declare class FallbackContainer implements Container { private readonly containers; constructor(...containers: Container[]); get<T = unknown>(id: string, context?: RunningContext): Promise<T>; getParameter<T = unknown>(id: string, context?: RunningContext): Promise<T>; findServiceIdsByTag(tag: string): string[]; } //# sourceMappingURL=fallback.d.ts.map