From 2f54ab25d439b9eb3372cf1ddc26f21afd12a29b Mon Sep 17 00:00:00 2001 From: George Gkasdrogkas Date: Sun, 28 Oct 2018 10:34:17 +0200 Subject: [PATCH] Update TS definitions for strikethrough, hidden, visible modifiers --- index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.d.ts b/index.d.ts index e14b40d..fa8cbca 100644 --- a/index.d.ts +++ b/index.d.ts @@ -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;