UNPKG

ts-japi

Version:

A highly-modular (typescript-friendly)-framework agnostic library for serializing data to the JSON:API specification

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