Skip to content

Commit

Permalink
fix(ignore): TS refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Jun 7, 2023
1 parent 85bedb2 commit 22bf5b2
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 81 deletions.
4 changes: 2 additions & 2 deletions src/lib/color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function kelvinToMireds(kelvin: number) {
return 1000000 / kelvin;
}

class ColorRGB {
export class ColorRGB {
red: number;
green: number;
blue: number;
Expand Down Expand Up @@ -200,7 +200,7 @@ class ColorRGB {
/**
* Class representing color in CIE space
*/
class ColorXY {
export class ColorXY {
x: number;
y: number;

Expand Down
Loading

0 comments on commit 22bf5b2

Please sign in to comment.