UNPKG

typed-object-accumulator

Version:
32 lines 1.49 kB
"use strict"; /** * @module typed-object-accumulator * @description A TypeScript library for accumulating objects with type safety * @summary This module provides utilities for dynamically accumulating object properties while maintaining type information. It exports the {@link ObjectAccumulator} class and version information. */ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __exportStar = (this && this.__exportStar) || function(m, exports) { for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.VERSION = void 0; __exportStar(require("./accumulator.cjs"), exports); /** * @description Represents the current version of the typed-object-accumulator module * @summary The actual version number is replaced during the build process with the package version * @const VERSION * @type {string} * @memberOf module:typed-object-accumulator */ exports.VERSION = "1.0.5"; //# sourceMappingURL=index.js.map