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.

7 lines (4 loc) 186 B
import {NLError} from './error'; import {NLWarning} from './warning'; export type NLException = NLError | NLWarning; export type NLExceptionType = NLError['type'] | NLWarning['type'];