UNPKG

@twurple/api

Version:

Interact with Twitch's API.

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