inversify
Version:
A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.
12 lines (11 loc) • 419 B
TypeScript
import { interfaces } from '../interfaces/interfaces';
declare class Context implements interfaces.Context {
id: number;
container: interfaces.Container;
plan: interfaces.Plan;
currentRequest: interfaces.Request;
constructor(container: interfaces.Container);
addPlan(plan: interfaces.Plan): void;
setCurrentRequest(currentRequest: interfaces.Request): void;
}
export { Context };