UNPKG

container-ioc

Version:

Dependency Injection and Inversion of Control (IoC) container

12 lines (11 loc) 276 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class InjectionToken { constructor(description) { this.description = description; } toString() { return this.description; } } exports.InjectionToken = InjectionToken;