UNPKG

@rimbu/table

Version:

Immutable spreadsheet-like data structures containing row keys, column keys, and cell values

16 lines 673 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Table = void 0; var custom_1 = require("@rimbu/table/custom"); /** * The default `Table` creators and context. * * Use this exported value to create and work with immutable `Table` instances. * See the [Table documentation](https://rimbu.org/docs/collections/table) and the [Table API documentation](https://rimbu.org/api/rimbu/table/Table/interface). */ exports.Table = Object.freeze({ createContext: function (options) { return Object.freeze(new custom_1.TableContext('Table', options.rowContext, options.columnContext)); }, }); //# sourceMappingURL=generic.cjs.map