UNPKG

@aedart/contracts

Version:

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

24 lines (21 loc) 548 B
/** * @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'); export { CONTAINER, DEPENDENCIES };