@jems/di
Version:
An implementation of IoC pattern based on dependency injection that allows you to granulate and decouple your libraries or applications. Wrote using SOLID principles and a variety OOP patterns implementations.
12 lines (11 loc) • 368 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents the alias metadata that contain the activation and servicing information of the alias.
*/
var DependencyMetadata = /** @class */ (function () {
function DependencyMetadata() {
}
return DependencyMetadata;
}());
exports.DependencyMetadata = DependencyMetadata;