@iexec/iapp
Version:
A CLI to guide you through the process of building an iExec iApp
21 lines • 483 B
JavaScript
import boxen from 'boxen';
export function hintBox(message) {
return boxen(message, {
padding: 1,
margin: 1,
borderStyle: 'round',
borderColor: 'cyan',
});
}
export function warnBox(message) {
return boxen(message, {
padding: 1,
margin: 1,
borderStyle: 'round',
borderColor: 'yellow',
});
}
export function objectBox(message) {
return boxen(message, { margin: 1 });
}
//# sourceMappingURL=box.js.map