From 7ee251dded9509441d6d26c6db14ccb3cdc17529 Mon Sep 17 00:00:00 2001 From: Andrew Michael McNutt Date: Mon, 19 Feb 2024 13:29:54 -0800 Subject: [PATCH] doh --- src/lib/lint-language/lint-type.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/lint-language/lint-type.ts b/src/lib/lint-language/lint-type.ts index 9d7c6a54..336b8cb6 100644 --- a/src/lib/lint-language/lint-type.ts +++ b/src/lib/lint-language/lint-type.ts @@ -1,4 +1,4 @@ -import { Color as ColorClass } from "../Color"; +import { Color } from "../Color"; /** * Lint Language * Lint Language is a language for expressing color logic. It is used to define color rules and constraints in the Lint system. @@ -202,5 +202,5 @@ export type LintValue = // raw values export type LintBoolean = boolean; export type LintVariable = string; -// export type LintColor = string | Color | LintVariable; -export type LintColor = string | LintVariable; +export type LintColor = string | Color | LintVariable; +// export type LintColor = string | LintVariable;