From 26b6a2afb590a45370e1b3fb42897a29f21e5da4 Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 2 Jul 2017 14:52:52 +0200 Subject: [PATCH] Update test.ts --- types/test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/types/test.ts b/types/test.ts index 3ced627..cde09c3 100644 --- a/types/test.ts +++ b/types/test.ts @@ -1,9 +1,12 @@ -import * as chalk from '../.'; +import * as chalk from '..'; chalk.underline('foo'); chalk.red('foo'); chalk.bgRed('foo'); +const name = 'Josh'; +chalk`Hello {bold.red ${name}}`; + chalk.red`foo`; chalk.underline`foo`; chalk`foo`;