We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a6ddd5 commit 79e0c9aCopy full SHA for 79e0c9a
src/index.ts
@@ -9,6 +9,7 @@ export * from './semantic'
9
export * from './chain'
10
export * from './object'
11
export * from './switch'
12
+export * from './cache'
13
14
import * as typed from './typed'
15
import * as types from './types'
@@ -20,6 +21,7 @@ import * as text from './semantic'
20
21
import * as chain from './chain'
22
import * as object from './object'
23
import * as switchOps from './switch'
24
+import * as cache from './cache'
25
export default {
26
...typed,
27
...types,
@@ -30,5 +32,6 @@ export default {
30
32
...text,
31
33
...chain,
34
...object,
- ...switchOps
35
+ ...switchOps,
36
+ ...cache
37
}
0 commit comments