diff --git a/src/types/table/types.ts b/src/types/table/types.ts index 1e3f0d2..81bbaea 100644 --- a/src/types/table/types.ts +++ b/src/types/table/types.ts @@ -36,4 +36,12 @@ export interface TableProps { tableClassNames?: string; hideHeader?: boolean; rowClick?: string; +} + +export type FetchTableRequest = { + page: number; + pageSize: number; + sortKey: string; + sortOrder: string; + search: string; } \ No newline at end of file