feat: add data table actions

This commit is contained in:
Mythie
2023-08-29 14:30:57 +10:00
parent 1f8d5e45e1
commit 68a5a9da1e
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;