UNPKG

@master-chief/alpaca-ts

Version:

A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.

10 lines (8 loc) 173 B
import type { News } from "./News.js"; export type GetNewsResponse = { news?: Array<News>; /** * Pagination token for next page */ next_page_token?: string; };