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
/
getPaginationRowModel.d.ts
5 lines
(4 loc)
•
209 B
TypeScript
View Raw
1
2
3
4
5
import
{
Table
,
RowModel
,
RowData
}
from
'../types'
;
export
declare
function
getPaginationRowModel<
TData
extends
RowData
>(
opts
?: {
initialSync
:
boolean
; }):
(
table
:
Table
<
TData
>
) =>
() =>
RowModel
<
TData
>;