import type { nullish } from "../types/global.types"; export interface PaginationOf { first: T | nullish; last: T | nullish; next: T | nullish; prev: T | nullish; } //# sourceMappingURL=paginator.interface.d.ts.map