({
pageSize,
filter,
sort,
}: Pick<InfiniteTableRowsParams, 'pageSize' | 'filter' | 'sort'>)
| 399 | } |
| 400 | |
| 401 | export function tableRowsParamsKey({ |
| 402 | pageSize, |
| 403 | filter, |
| 404 | sort, |
| 405 | }: Pick<InfiniteTableRowsParams, 'pageSize' | 'filter' | 'sort'>): string { |
| 406 | return JSON.stringify({ pageSize, filter: filter ?? null, sort: sort ?? null }) |
| 407 | } |
| 408 | |
| 409 | interface FindTableRowsParams { |
| 410 | workspaceId: string |
no outgoing calls
no test coverage detected