UNPKG

inversify

Version:

A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.

13 lines (12 loc) 291 B
import guid from "../utils/guid"; var Context = (function () { function Context(kernel) { this.guid = guid(); this.kernel = kernel; } Context.prototype.addPlan = function (plan) { this.plan = plan; }; return Context; }()); export default Context;