Skip to content

Commit

Permalink
fix: Export all types from './types'
Browse files Browse the repository at this point in the history
Export all types from the './types' module to make them accessible to consumers of this library.
  • Loading branch information
tomerh2001 committed Sep 12, 2024
1 parent d2e049a commit d45eaae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d45eaae

Please sign in to comment.