Preview:```ts
interface PagedResponse<T> {
data: T[];
/** Pass to the getPage function to get the next page. undefined if there are no more pages. */
next?: string;
}
/**
- Fetches a single page.
- Give
undefinedas the cursor to get the initial page.
...```
You can choose specific lines to embed by selecting them before copying the link.