Update TS definitions for strikethrough, hidden, visible modifiers

This commit is contained in:
George Gkasdrogkas 2018-10-28 10:34:17 +02:00
parent 840483a750
commit 2f54ab25d4
No known key found for this signature in database
GPG key ID: 3FCA70FC54D4293F

6
index.d.ts vendored
View file

@ -225,17 +225,17 @@ export interface Chalk {
readonly inverse: this;
/**
* Modifier
* Modifier: Prints the text, but makes it invisible.
*/
readonly hidden: this;
/**
* Modifier
* Modifier: https://en.wikipedia.org/wiki/Strikethrough
*/
readonly strikethrough: this;
/**
* Modifier
* Modifier: Prints the text only when Chalk is enabled. Can be useful for things that are purely cosmetic.
*/
readonly visible: this;