Update pagination request on client

This commit is contained in:
jeffvli
2022-07-30 15:41:18 -07:00
parent aa673ac854
commit bc86da7762
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ export interface BasePaginatedResponse<T> {
}
export interface BasePaginationRequest {
limit: number;
page: number;
skip: number;
take: number;
}
export type ServerResponse = {