Skip to content

Commit 79e0c9a

Browse files
committed
Add cache module to exports
1 parent 1a6ddd5 commit 79e0c9a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export * from './semantic'
99
export * from './chain'
1010
export * from './object'
1111
export * from './switch'
12+
export * from './cache'
1213

1314
import * as typed from './typed'
1415
import * as types from './types'
@@ -20,6 +21,7 @@ import * as text from './semantic'
2021
import * as chain from './chain'
2122
import * as object from './object'
2223
import * as switchOps from './switch'
24+
import * as cache from './cache'
2325
export default {
2426
...typed,
2527
...types,
@@ -30,5 +32,6 @@ export default {
3032
...text,
3133
...chain,
3234
...object,
33-
...switchOps
35+
...switchOps,
36+
...cache
3437
}

0 commit comments

Comments
 (0)