New Changes with Table

This commit is contained in:
2025-11-11 14:58:16 +05:30
parent d36ec33a17
commit 22873fc864
+8
View File
@@ -36,4 +36,12 @@ export interface TableProps<T> {
tableClassNames?: string;
hideHeader?: boolean;
rowClick?: string;
}
export type FetchTableRequest = {
page: number;
pageSize: number;
sortKey: string;
sortOrder: string;
search: string;
}