From a4af455c21892ef25d98d2870db86db1060ad860 Mon Sep 17 00:00:00 2001 From: David De Smet <2607383+daviddesmet@users.noreply.github.com> Date: Fri, 11 Nov 2022 20:41:03 -0600 Subject: [PATCH] Types imported as type Resolves: This import is never used as a value and must use 'import type' because 'importsNotUsedAsValues' is set to 'error'. --- lib/sifter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sifter.ts b/lib/sifter.ts index 39ae56f..7ef07af 100644 --- a/lib/sifter.ts +++ b/lib/sifter.ts @@ -16,7 +16,7 @@ import { scoreValue, getAttr, getAttrNesting, propToArray, iterate, cmp } from './utils'; import { getPattern, escape_regex } from '@orchidjs/unicode-variants'; -import * as T from './types'; +import type * as T from './types'; class Sifter{