UNPKG

@master-chief/alpaca-ts

Version:

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

11 lines (10 loc) 297 B
import type { Quote } from "./Quote.js"; /** * A model representing the result of hitting the Latest Quote api. * * Represents a single Quote that should be the latest quote data for a given ticker symbol */ export declare type LatestQuoteResponse = { quote: Quote; symbol: string; };