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.
29 lines (23 loc) • 551 B
text/typescript
export type SectorId =
'technology'
| 'renewable-energy'
| 'financial-services'
| 'healthcare'
| 'consumer-goods'
| 'industrial'
| 'utilities'
| 'real-estate';
export type Sector = {
id: SectorId;
label: string;
};
export type ExchangeId = 'NYSE' | 'NASDAQ' | 'LSE' | 'HK';
export type Exchange = {
id: ExchangeId;
label: string;
};
export type MarketCapCategoryId = 'micro' | 'small' | 'mid' | 'large' | 'mega';
export type MarketCapCategory = {
id: MarketCapCategoryId;
label: string;
};