@rimbu/table
Version:
Immutable spreadsheet-like data structures containing row keys, column keys, and cell values
16 lines • 812 B
JavaScript
;
/**
* @packageDocumentation
*
* The `@rimbu/table/custom` entry exposes the lower‑level interfaces, creators and
* implementations that power `Table` variants, enabling advanced users to build
* custom table configurations on top of specific map contexts for rows and columns.<br/>
* For typical 2‑dimensional table usage the main `@rimbu/table` and its `hash-row`
* / `sorted-row` sub‑packages are recommended; this entry targets specialized setups.
*/
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
tslib_1.__exportStar(require("./interface/base.cjs"), exports);
tslib_1.__exportStar(require("./interface/creators.cjs"), exports);
tslib_1.__exportStar(require("./implementation/base.cjs"), exports);
//# sourceMappingURL=index.cjs.map