UNPKG

remix-nlux

Version:

Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.

26 lines (21 loc) 511 B
import {ExchangeId, MarketCapCategoryId, SectorId} from './Data'; export type StockData = { id: string; company: string; description: string; country: string; logoUrl: string; symbol: string; exchange: ExchangeId; sector: SectorId; marketCap: string; marketCapCategoryId: MarketCapCategoryId; price: number; oneDayChange: number; oneWeekChange: number; oneMonthChange: number; } export type StockRow = { data: StockData; selected: boolean; };