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) 350 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 declare type MultiSnapshotResponse = Record<string, Snapshot>;