Skip to content

Commit

Permalink
fix: export "is" functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mineejo committed Nov 24, 2023
1 parent 3181a26 commit edf47a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions color/is/mod.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Copyright 2023 mineejo. All rights reserved. MIT license.

export { isRgb } from "./isRgb.ts";
export { isRgba } from "./isRgba.ts";
2 changes: 2 additions & 0 deletions color/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@

export { rgbColorWheel } from "./rgb_color_wheel.ts";

export * from "./is/mod.ts";

export type { Rgb } from "./rgb.ts";
export type { Rgba } from "./rgba.ts";
3 changes: 2 additions & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ export { AdvancedColor } from "./advanced_color.ts";
export { ColorComponent } from "./color_component.ts";

export * from "./color_effects/mod.ts";
export * from "./color/is/mod.ts";

export type * from "./color/mod.ts";
export type { Rgb, Rgba } from "./color/mod.ts";

0 comments on commit edf47a7

Please sign in to comment.