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.

20 lines (14 loc) 475 B
export type ContextItemDataType = number | string | boolean | null | ContextObject | ContextItemDataType[]; export type ContextObject = { [key: string]: ContextItemDataType; }; export type ContextItem = { value: ContextItemDataType; description: string; }; export type ContextItems = Record<string, ContextItem>; export type ContextTask = { description: string; paramDescriptions: string[]; }; export type ContextTasks = Record<string, ContextTask>;