UNPKG

inversify

Version:

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

21 lines (20 loc) 901 B
define(["require", "exports", "./binding_when_syntax"], function (require, exports, binding_when_syntax_1) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BindingOnSyntax = void 0; var BindingOnSyntax = (function () { function BindingOnSyntax(binding) { this._binding = binding; } BindingOnSyntax.prototype.onActivation = function (handler) { this._binding.onActivation = handler; return new binding_when_syntax_1.BindingWhenSyntax(this._binding); }; BindingOnSyntax.prototype.onDeactivation = function (handler) { this._binding.onDeactivation = handler; return new binding_when_syntax_1.BindingWhenSyntax(this._binding); }; return BindingOnSyntax; }()); exports.BindingOnSyntax = BindingOnSyntax; });