@rimbu/table
Version:
Immutable spreadsheet-like data structures containing row keys, column keys, and cell values
19 lines • 850 B
JavaScript
/**
* @packageDocumentation
*
* The `@rimbu/table` package provides implementations for tables (2-dimensional maps).<br/>
* <br/>
* See the [Rimbu docs Table page](/docs/collections/table) for more information.<br/>
* <br/>
* For convenience, this package also exports everything from the following sub-packages:<br/>
* - [`@rimbu/table/hash-row`](./table/hash-row)<br/>
* - [`@rimbu/table/sorted-row`](./table/sorted-row)<br/>
*/
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
tslib_1.__exportStar(require("./interface/variant.cjs"), exports);
tslib_1.__exportStar(require("./interface/generic.cjs"), exports);
tslib_1.__exportStar(require("@rimbu/table/hash-row"), exports);
tslib_1.__exportStar(require("@rimbu/table/sorted-row"), exports);
//# sourceMappingURL=index.cjs.map
;