UNPKG
@cn-ui/table-core
Version:
latest (8.16.0)
8.16.0
Headless UI for building powerful tables & datagrids for TS/JS.
tanstack.com/table
TanStack/table
@cn-ui/table-core
/
build
/
lib
/
utils
/
getCoreRowModel.d.ts
3 lines
(2 loc)
•
167 B
TypeScript
View Raw
1
2
3
import
{
Table
,
RowModel
,
RowData
}
from
'../types'
;
export
declare
function
getCoreRowModel<
TData
extends
RowData
>():
(
table
:
Table
<
TData
>
) =>
() =>
RowModel
<
TData
>;