This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
TwitToMast/ref/classes/formats.js
Penelope Gomez / Pogmommy ed9d5c68fd 2.0.0
2023-02-14 14:35:57 -07:00

15 lines
No EOL
327 B
JavaScript

const colors = require('cli-color');
class Formats {
constructor() {
this.success = colors.green.bold;
this.error = colors.red.bold;
this.warn = colors.yellow;
this.notice = colors.blue.bold;
this.bold = colors.bold;
this.underline = colors.underline;
this.italic = colors.italic;
}
}
module.exports = Formats