@carlosv2/glue
Version:
Dependency injection library that stays out of the way
13 lines • 548 B
TypeScript
import type { DefinitionContext, RunningContext } from '../context/index.js';
import { Value } from '../value.js';
export declare class Service extends Value {
private readonly id;
constructor(context: DefinitionContext, id: string);
protected assemble(context: RunningContext): Promise<unknown>;
}
export declare class Parameter extends Value {
private readonly id;
constructor(context: DefinitionContext, id: string);
protected assemble(context: RunningContext): Promise<unknown>;
}
//# sourceMappingURL=container.d.ts.map