UNPKG

realtime-data-cli-tool

Version:

A real-time data dashboard CLI tool built with Ink, React, and TypeScript that displays live ISS location, weather, Bitcoin prices, random facts, and inspirational quotes

26 lines (25 loc) 476 B
export interface Props { name: string | undefined; } export interface ISSData { latitude: number; longitude: number; timestamp: number; } export interface WeatherData { location: string; temperature: number; description: string; humidity: number; } export interface FactData { text: string; } export interface QuoteData { content: string; author: string; } export interface BitcoinData { price: number; change24h: number; }