UNPKG

dexscreener-sdk

Version:

A TypeScript wrapper for the DEX Screener API, providing easy access to token profiles, boosts, orders, pairs, and more.

12 lines (11 loc) 274 B
/** * Common response type for paginated endpoints */ export interface PaginatedResponse<T> { /** Current page number */ page: number; /** Total number of pages */ totalPages: number; /** Array of items for current page */ items: T[]; }