tables.tablecontainer.md
January 18, 2023 ยท View on GitHub
Home > @datashaper/tables > TableContainer
TableContainer interface
Signature:
export interface TableContainer<T = unknown>
Properties
| Property | Modifiers | Type | Description |
|---|---|---|---|
| context? | T | (Optional) Optional contextual data about the table. For example, if the table was created using a process/transformation that has additional information to relay, that context can be stored here. | |
| id | string | This is the formal id for a table, and must be unique within the store. A URI would normally be appropriate. | |
| metadata? | TableMetadata | (Optional) Optional metadata block for the table. This can follow the container around to help avoid recomputes. | |
| table? | ColumnTable | (Optional) This is the actual Arquero table instance to store. If it has not been resolved yet it will be undefined. |