UNPKG

ts-japi

Version:

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

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