From d891265fbe0eb84e36ab1d0eb6c69239c876501f Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sun, 28 Oct 2018 13:32:35 +0700 Subject: [PATCH] Update index.test-d.ts --- index.test-d.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/index.test-d.ts b/index.test-d.ts index 65d5015..b568779 100644 --- a/index.test-d.ts +++ b/index.test-d.ts @@ -1,8 +1,8 @@ -import { expectType } from 'tsd-check'; -import chalk, { Level, Chalk, ColorSupport } from '.'; +import {expectType} from 'tsd-check'; +import chalk, {Level, Chalk, ColorSupport} from '.'; // - Helpers - -type colorReturn = Chalk & { supportsColor: ColorSupport }; +type colorReturn = Chalk & {supportsColor: ColorSupport}; // - Level - expectType(Level.None); @@ -145,4 +145,3 @@ expectType(chalk.bgWhiteBright`foo`); // -- Complex -- expectType(chalk.red.bgGreen.underline('foo')); expectType( chalk.underline.red.bgGreen('foo')); -