UNPKG

@twurple/api

Version:

Interact with Twitch's API.

9 lines (8 loc) 220 B
/** @internal */ export function createPaginationQuery({ after, before, limit } = {}) { return { after, before, first: limit === null || limit === void 0 ? void 0 : limit.toString(), }; }