Update api/src/utils/pagination/pagination-query.dto.ts

This commit is contained in:
Med Marrouchi 2024-12-30 08:58:56 +01:00 committed by GitHub
parent ca3a0f364f
commit 7e98fdc3bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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>;
};