UNPKG

node-brawlstars

Version:

Javascript library to communicate with BrawlStars API

12 lines (11 loc) 218 B
export declare namespace Pagination { interface Query { before?: string; after?: string; limit?: number; } interface Response<T> { items: T[]; cursor: Query; } }