feat: add data table actions

This commit is contained in:
Mythie
2023-08-29 14:30:57 +10:00
parent 62c4a89521
commit dfe04018a0
6 changed files with 230 additions and 74 deletions

View File

@@ -1,5 +1,5 @@
export type FindResultSet<T> = {
data: T[];
data: T extends Array<any> ? T : T[];
count: number;
currentPage: number;
perPage: number;