UNPKG

@twurple/api

Version:

Interact with Twitch's API.

25 lines 538 B
/** * Base forward pagination parameters for Helix requests. */ export interface HelixForwardPagination { /** * The number of results per page. */ limit?: number; /** * A cursor to get the following page of. */ after?: string; } /** * Base pagination parameters for Helix requests. * * @inheritDoc */ export interface HelixPagination extends HelixForwardPagination { /** * A cursor to get the previous page of. */ before?: string; } //# sourceMappingURL=HelixPagination.d.ts.map