create-testplane
Version:
A tool for fast and simple Testplane configuration
10 lines • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Colors = void 0;
class Colors {
}
exports.Colors = Colors;
Colors.fillTeal = (str) => `\u001B[36m${str}\u001B[0m`;
Colors.fillGreen = (str) => `\u001B[32m${str}\u001B[0m`;
Colors.fillYellow = (str) => `\u001B[33m${str}\u001B[0m`;
//# sourceMappingURL=colors.js.map