@tanstack/table-core 8.3.1 → 8.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -77,7 +77,7 @@ declare type CoreColumnDefBase<TData extends RowData, TValue> = {
77
77
  header?: ColumnDefTemplate<HeaderContext<TData, TValue>>;
78
78
  footer?: ColumnDefTemplate<HeaderContext<TData, TValue>>;
79
79
  cell?: ColumnDefTemplate<CellContext<TData, TValue>>;
80
- meta?: ColumnMeta;
80
+ meta?: ColumnMeta<TData, TValue>;
81
81
  };
82
82
  declare type CoreColumnDefDisplay<TData extends RowData, TValue> = CoreColumnDefBase<TData, TValue> & {
83
83
  id: string;
@@ -634,7 +634,7 @@ declare const createRow: <TData extends unknown>(table: Table<TData>, id: string
634
634
 
635
635
  interface TableMeta {
636
636
  }
637
- interface ColumnMeta {
637
+ interface ColumnMeta<TData extends RowData, TValue> {
638
638
  }
639
639
  interface FilterMeta {
640
640
  }