diff --git a/docs/api/core/column-def.md b/docs/api/core/column-def.md index 9ecc0b039b..17b2ee2aae 100644 --- a/docs/api/core/column-def.md +++ b/docs/api/core/column-def.md @@ -95,9 +95,9 @@ meta?: ColumnMeta // This interface is extensible via declaration merging. See b The meta data to associated with the column. We can access it anywhere when the column is available via `column.columnDef.meta`. This type is global to all tables and can be extended like so: ```tsx -import '@tanstack/react-table' +import '@tanstack/react-table' //or vue, svelte, solid, etc. -declare module '@tanstack/table-core' { +declare module '@tanstack/react-table' { interface ColumnMeta { foo: string }