Type Alias Pagination

type Pagination = {
    links?: {
        next?: { href?: string };
        prev?: { href?: string };
        self?: { href?: string };
    };
}
Index

Properties

Properties

links?: {
    next?: { href?: string };
    prev?: { href?: string };
    self?: { href?: string };
}