mirror of
https://github.com/hexastack/hexabot
synced 2025-05-02 20:11:30 +00:00
Update api/src/utils/pagination/pagination-query.dto.ts
This commit is contained in:
parent
ca3a0f364f
commit
7e98fdc3bb
@ -16,7 +16,7 @@ export type QuerySortDto<T> = [
|
||||
];
|
||||
|
||||
export type PageQueryDto<T> = {
|
||||
skip: number;
|
||||
limit: number;
|
||||
sort?: QuerySortDto<T>;
|
||||
skip: number | undefined;
|
||||
limit: number | undefined;
|
||||
sort: QuerySortDto<T>;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user