@tanstack/table-core 8.0.0-alpha.59 → 8.0.0-alpha.60

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
3
  "author": "Tanner Linsley",
4
- "version": "8.0.0-alpha.59",
4
+ "version": "8.0.0-alpha.60",
5
5
  "description": "Hooks for building lightweight, fast and extendable datagrids for React",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/tanstack/react-table#readme",
package/src/core.ts CHANGED
@@ -125,7 +125,7 @@ export function createTableInstance<TGenerics extends TableGenerics>(
125
125
  } as TableState
126
126
 
127
127
  const queued: (() => void)[] = []
128
- let queuedTimeout: NodeJS.Timeout
128
+ let queuedTimeout: ReturnType<typeof setTimeout>
129
129
 
130
130
  const finalInstance: TableInstance<TGenerics> = {
131
131
  ...instance,