UNPKG

doguinho

Version:

IoC and DI for Vue.js 2 with InversifyJS inspired by NestJS

18 lines (15 loc) 373 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Injectable = Injectable; exports.Inject = Inject; exports.DefaultInjectionScope = void 0; var DefaultInjectionScope = "Singleton"; exports.DefaultInjectionScope = DefaultInjectionScope; function Injectable() { return function () {}; } function Inject() { return function () {}; }