UNPKG

@iexec/iapp

Version:

A CLI to guide you through the process of building an iExec iApp

24 lines (20 loc) 437 B
import boxen from 'boxen'; export function hintBox(message: string) { return boxen(message, { padding: 1, margin: 1, borderStyle: 'round', borderColor: 'cyan', }); } export function warnBox(message: string) { return boxen(message, { padding: 1, margin: 1, borderStyle: 'round', borderColor: 'yellow', }); } export function objectBox(message: string) { return boxen(message, { margin: 1 }); }