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`;