Skip to content

Commit

Permalink
doh
Browse files Browse the repository at this point in the history
  • Loading branch information
mcnuttandrew committed Feb 19, 2024
1 parent 829f520 commit 7ee251d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/lint-language/lint-type.ts
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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;

0 comments on commit 7ee251d

Please sign in to comment.