From 7f93d2ceb4e0039d2a372f4a9ec650756e3d7c03 Mon Sep 17 00:00:00 2001 From: Andrew Michael McNutt Date: Sat, 19 Oct 2024 18:48:56 -0600 Subject: [PATCH] types --- apps/color-buddy/src/custom-types.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/color-buddy/src/custom-types.d.ts b/apps/color-buddy/src/custom-types.d.ts index 09186d5..a302ea5 100644 --- a/apps/color-buddy/src/custom-types.d.ts +++ b/apps/color-buddy/src/custom-types.d.ts @@ -4,4 +4,8 @@ declare module "color-blind" { export default blinder; } -declare module "colorthief" {} +declare module "colorthief" { + // make this be of any type + const colorThief: any; + export default colorThief; +}