We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7835c8e commit 5c7d20eCopy full SHA for 5c7d20e
1 file changed
packages/test-app/src/exports.ts
@@ -27,5 +27,26 @@ import {
27
// JSON
28
import { JsonValue, parseJson, isJsonValue } from 'pure-parse'
29
30
+// Higher order parsers
31
+import {
32
+ array,
33
+ object,
34
+ oneOf,
35
+ optional,
36
+ withDefault,
37
+ equals,
38
+ map,
39
+ chain,
40
+ recover,
41
+} from 'pure-parse'
42
+
43
+// Higher order guards
44
45
+ equalsGuard,
46
+ objectGuard,
47
+ arrayGuard,
48
+ optionalGuard,
49
50
51
// @ts-expect-error -- test that importing something that doesn't exist gives an error
52
import { abcSomethingThatDoesNotExist } from 'pure-parse'
0 commit comments