@aedart/contracts
Version:
The Ion contracts package. Contains types, interfaces and unique identifiers
29 lines (25 loc) • 692 B
JavaScript
/**
* @aedart/contracts
*
* BSD-3-Clause, Copyright (c) 2023-present Alin Eugen Deac <aedart@gmail.com>.
*/
;
/**
* Container identifier
*
* @type {Symbol}
*/
const CONTAINER = Symbol('@aedart/contracts/container');
/**
* Dependencies identifier
*
* Symbol is intended to be used as an identifier for when associating binding identifiers
* or "concrete" dependencies with an element, e.g. a class, class method, function,...etc.
*
* @type {symbol}
*/
const DEPENDENCIES = Symbol('dependencies');
exports.CONTAINER = CONTAINER;
exports.DEPENDENCIES = DEPENDENCIES;
module.exports = Object.assign(exports.default, exports);
//# sourceMappingURL=container.cjs.map