import type { IPageSeo } from './page-seo'; type BasePagination = { currentPage: number; allPages: number; total: number; seo?: IPageSeo | null; }; export type PaginatedResponse = | (BasePagination & { items: T[] });