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) 343 B
import type { Snapshot } from "./Snapshot.js"; /** * A model representing the result of hitting the Multi Snapshots api; represents Snapshots for multiple symbols. * * The result is an object whose keys are the requested symbols and values are their respecitve Snapshot * */ export type MultiSnapshotResponse = Record<string, Snapshot>;