MCPcopy
hub / github.com/soybeanjs/soybean-admin / PaginationData

Interface PaginationData

packages/hooks/src/use-table.ts:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import useLoading from './use-loading';
5
6export interface PaginationData<T> {
7 data: T[];
8 pageNum: number;
9 pageSize: number;
10 total: number;
11}
12
13type GetApiData<ApiData, Pagination extends boolean> = Pagination extends true ? PaginationData<ApiData> : ApiData[];
14

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected