investing-economic-calendar
Version:
Extract economic events from the Investing.com widget.
15 lines (14 loc) • 363 B
TypeScript
import type { Currency } from "./Currency";
import type { Importance } from "./Importance";
export interface EconomicEvent {
id: string;
timestampDay: number;
time: string;
country: string;
currency: Currency;
importance: Importance;
name: string;
actual: string | null;
forecast: string | null;
previous: string | null;
}