fix: fix pagination info schema

This commit is contained in:
2024-11-27 17:02:15 +04:00
parent 886eef4c0d
commit f41083d2a8

View File

@@ -3,7 +3,7 @@
/* tslint:disable */ /* tslint:disable */
/* eslint-disable */ /* eslint-disable */
export type PaginationInfoSchema = { export type PaginationInfoSchema = {
totalPages?: number; totalPages: number;
totalItems?: number; totalItems: number;
}; };