UNPKG

@master-chief/alpaca-ts

Version:

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

9 lines (8 loc) 252 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 declare type LatestMultiBarsResponse = { bars: Record<string, Bar>; };