From d45eaae2501bf88d88ce55409c293cb9b1a5f920 Mon Sep 17 00:00:00 2001 From: Tomer Horowitz Date: Thu, 12 Sep 2024 22:53:48 +0300 Subject: [PATCH] fix: Export all types from './types' Export all types from the './types' module to make them accessible to consumers of this library. --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 1b3839d..6b14c2b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -10,6 +10,8 @@ import { type CachedFunctionResult, } from './types'; +export * from './types'; + let cache: Cache | undefined; let logger: Logger = { info(...arguments_: any) {}, // eslint-disable-line @typescript-eslint/no-unused-vars, @typescript-eslint/no-empty-function