UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

13 lines 294 B
export interface IStockPrice { ticker: string; price: number; currency: string; change: number; changePercent: number; previousClose: number; timestamp: Date; provider: string; marketState: 'PRE' | 'REGULAR' | 'POST' | 'CLOSED'; exchange?: string; exchangeName?: string; }