first commit
This commit is contained in:
commit
e8ec46d19f
60 changed files with 13652 additions and 0 deletions
10
src/types.ts
Normal file
10
src/types.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export type Result<T> = {
|
||||
result: T;
|
||||
};
|
||||
|
||||
export type PaginationResult<T> = {
|
||||
result: T[];
|
||||
page: number;
|
||||
pageSize: number;
|
||||
total: number;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue