Interface PaginationOf<T>

interface PaginationOf<T> {
    first: nullish | T;
    last: nullish | T;
    next: nullish | T;
    prev: nullish | T;
}

Type Parameters

  • T

Properties

Properties

first: nullish | T
last: nullish | T
next: nullish | T
prev: nullish | T

Generated using TypeDoc