UNPKG

@aedart/contracts

Version:

The Ion contracts package. Contains types, interfaces and unique identifiers

29 lines (25 loc) 692 B
/** * @aedart/contracts * * BSD-3-Clause, Copyright (c) 2023-present Alin Eugen Deac <aedart@gmail.com>. */ 'use strict'; /** * 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