UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

33 lines 1.4 kB
"use strict"; // ------------------------------------------------------------------------------ // Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved. // // NOTICE: You are permitted to use, modify, and distribute this file // in accordance with the terms of the license agreement accompanying it. // ------------------------------------------------------------------------------ Object.defineProperty(exports, "__esModule", { value: true }); exports.RobotlegsInjector = void 0; var tslib_1 = require("tslib"); var inversify_1 = require("inversify"); /** * Robotlegs IInjector Adapter */ var RobotlegsInjector = /** @class */ (function (_super) { tslib_1.__extends(RobotlegsInjector, _super); /*============================================================================*/ /* Constructor */ /*============================================================================*/ /** * Creates a new Injector */ function RobotlegsInjector() { return _super.call(this) || this; } RobotlegsInjector = tslib_1.__decorate([ inversify_1.injectable(), tslib_1.__metadata("design:paramtypes", []) ], RobotlegsInjector); return RobotlegsInjector; }(inversify_1.Container)); exports.RobotlegsInjector = RobotlegsInjector; //# sourceMappingURL=RobotlegsInjector.js.map