/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ /** * The pagination links object. * @interface PaginationLinks */ export interface PaginationLinks { /** * The URL for the next link. * @type {string | null} * @memberof PaginationLinks */ next: string | null; /** * The URL for the previous link. * @type {string | null} * @memberof PaginationLinks */ prev: string | null; } /** * The pagination tokens object. * @interface PaginationTokens */ export type PaginationTokens = PaginationLinks;