Skip to content

Commit 0cafb33

Browse files
committed
Refactor import statements to use declaration file
1 parent 3c87429 commit 0cafb33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import {
88
type CachedFunctionInitializerOptions, type CachedFunctionOptions, type CacheableFunction, type ArgumentPaths,
99
type Logger,
1010
type CachedFunctionResult,
11-
} from './types';
11+
} from './types.d';
1212

13-
export * from './types';
13+
export * from './types.d';
1414

1515
let cache: Cache | undefined;
1616
let logger: Logger = {

0 commit comments

Comments
 (0)