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) 243 B
import type { Bar } from "./Bar.js"; /** * A model representing the result of hitting the Latest Multi Bars api; represents the latest Bars for multiple symbols. * */ export type LatestMultiBarsResponse = { bars: Record<string, Bar>; };