UNPKG

569 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.Lifetime = void 0;
4/**
5 * Lifetime types.
6 */
7exports.Lifetime = {
8 /**
9 * The registration will be resolved once and only once.
10 * @type {String}
11 */
12 SINGLETON: 'SINGLETON',
13 /**
14 * The registration will be resolved every time (never cached).
15 * @type {String}
16 */
17 TRANSIENT: 'TRANSIENT',
18 /**
19 * The registration will be resolved once per scope.
20 * @type {String}
21 */
22 SCOPED: 'SCOPED',
23};
24//# sourceMappingURL=lifetime.js.map
\No newline at end of file