Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/api/core/table.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ meta?: TableMeta // This interface is extensible via declaration merging. See be
You can pass any object to `options.meta` and access it anywhere the `table` is available via `table.options.meta` This type is global to all tables and can be extended like so:

```tsx
import '@tanstack/table-core';

declare module '@tanstack/table-core' {
interface TableMeta<TData extends RowData> {
foo: string
Expand Down