File tree 2 files changed +52
-1
lines changed
2 files changed +52
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,27 @@ import { inferSemver, JSONSemverFormat } from "./semver";
19
19
import { inferFirestoreTimestamp , JSONFirestoreTimestampFormat } from "./firestoreTimestamp" ;
20
20
import { inferJWT , JSONJWTStringFormat } from "./jwt" ;
21
21
22
+ export {
23
+ JSONHostnameFormat ,
24
+ JSONUUIDFormat ,
25
+ JSONURIFormat ,
26
+ JSONPhoneNumberFormat ,
27
+ JSONLanguageFormat ,
28
+ JSONIPAddressFormat ,
29
+ JSONTLDFormat ,
30
+ JSONCountryFormat ,
31
+ JSONCurrencyFormat ,
32
+ JSONEmailFormat ,
33
+ JSONTimestampFormat ,
34
+ JSONDateTimeFormat ,
35
+ JSONFilesizeFormat ,
36
+ JSONJSONFormat ,
37
+ JSONJSONPointerFormat ,
38
+ JSONEmojiFormat ,
39
+ JSONSemverFormat ,
40
+ JSONJWTStringFormat ,
41
+ } ;
42
+
22
43
export type JSONStringFormat =
23
44
| JSONHostnameFormat
24
45
| JSONUUIDFormat
Original file line number Diff line number Diff line change @@ -2,7 +2,37 @@ import { JSONValueType } from "./@types";
2
2
import { inferFormat , inferObjectFormat } from "./formats" ;
3
3
4
4
export { JSONValueType } ;
5
- export { JSONStringFormat } from "./formats" ;
5
+ export {
6
+ JSONStringFormat ,
7
+ JSONObjectFormat ,
8
+ JSONHostnameFormat ,
9
+ JSONUUIDFormat ,
10
+ JSONURIFormat ,
11
+ JSONPhoneNumberFormat ,
12
+ JSONLanguageFormat ,
13
+ JSONIPAddressFormat ,
14
+ JSONTLDFormat ,
15
+ JSONCountryFormat ,
16
+ JSONCurrencyFormat ,
17
+ JSONEmailFormat ,
18
+ JSONTimestampFormat ,
19
+ JSONDateTimeFormat ,
20
+ JSONFilesizeFormat ,
21
+ JSONJSONFormat ,
22
+ JSONJSONPointerFormat ,
23
+ JSONEmojiFormat ,
24
+ JSONSemverFormat ,
25
+ JSONJWTStringFormat ,
26
+ } from "./formats" ;
27
+ export {
28
+ JSONNullType ,
29
+ JSONBoolType ,
30
+ JSONFloatType ,
31
+ JSONIntType ,
32
+ JSONStringType ,
33
+ JSONObjectType ,
34
+ JSONArrayType ,
35
+ } from "./@types" ;
6
36
7
37
export type InferOptions = {
8
38
returnValue ?: "yes" | "no" ;
You can’t perform that action at this time.
0 commit comments