From aa70427c8c349bbfe4576cba878f5b44859007d4 Mon Sep 17 00:00:00 2001 From: rowan Date: Wed, 9 Apr 2025 14:51:50 -0500 Subject: [PATCH] fix imports --- src/type.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/type.js b/src/type.js index 3c5e4a0..660e4ff 100644 --- a/src/type.js +++ b/src/type.js @@ -1,5 +1,6 @@ +import { curry } from './curry.js' /** - * @typedef {"string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function"} TypeOfValue + * @typedef {'string' | 'number' | 'bigint' | 'boolean' | 'symbol' | 'undefined' | 'object' | 'function'} TypeOfValue */ /**