@carlosv2/glue
Version:
Dependency injection library that stays out of the way
18 lines • 523 B
TypeScript
import type { Container } from '../container.js';
type Frame = {
type: string;
id: string;
};
export declare class RunningContext {
private readonly container;
private readonly stack;
constructor(container: Container, stack?: Frame[]);
getContainer(): Container;
private isFrameInStack;
getRepresentation(): string;
private pushFrame;
pushParameterFrame(id: string): RunningContext;
pushServiceFrame(id: string): RunningContext;
}
export {};
//# sourceMappingURL=running.d.ts.map