@master-chief/alpaca-ts
Version:
A TypeScript Node.js library for the https://alpaca.markets REST API and WebSocket streams.
14 lines (13 loc) • 345 B
TypeScript
import type { Trade } from "./Trade.js";
/**
* A model representing the result of hitting the Latest Trade api.
*
* Represents a single Trade that should be the latest trade data for a given ticker symbol
*/
export declare type LatestTradeResponse = {
trade?: Trade;
/**
* Symbol that was queried
*/
symbol: string;
};