Skip to content

Commit 111d9cc

Browse files
committed
refactor: remove default exports for consistency
1 parent 87fc214 commit 111d9cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/asyncUtils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,4 @@ function asyncUtils(act: Act, addResolver: (callback: () => void) => void): Asyn
9595
}
9696
}
9797

98-
export default asyncUtils
98+
export { asyncUtils }

src/core/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { CreateRenderer, Renderer, RenderResult, RenderHook, RenderHookOptions } from '../types'
22
import { ResultContainer } from '../types/internal'
33

4-
import asyncUtils from './asyncUtils'
4+
import { asyncUtils } from './asyncUtils'
55
import { cleanup, addCleanup, removeCleanup } from './cleanup'
66

77
function resultContainer<TValue>(): ResultContainer<TValue> {

0 commit comments

Comments
 (0)