UNPKG

@carlosv2/glue

Version:

Dependency injection library that stays out of the way

7 lines 329 B
import type { RunningContext } from './context/index.js'; export interface Container { get<T = unknown>(id: string, context?: RunningContext): Promise<T>; getParameter<T = unknown>(id: string, context?: RunningContext): Promise<T>; findServiceIdsByTag(tag: string): string[]; } //# sourceMappingURL=container.d.ts.map