vasku
Version:
TVM-Solidity contract development framework
13 lines (12 loc) • 732 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ELLIPSIS = exports.QUIT = exports.BACK = exports.HELP = exports.Form = exports.Select = void 0;
// @ts-expect-error Module 'enquirer' has no exported member ('Select' | 'Form')
const enquirer_1 = require("enquirer");
Object.defineProperty(exports, "Select", { enumerable: true, get: function () { return enquirer_1.Select; } });
Object.defineProperty(exports, "Form", { enumerable: true, get: function () { return enquirer_1.Form; } });
const colors_1 = require("colors");
exports.HELP = (0, colors_1.gray)('?');
exports.BACK = (0, colors_1.red)('←');
exports.QUIT = (0, colors_1.red)('✖');
exports.ELLIPSIS = ` ${(0, colors_1.gray)('…')}`;