File tree Expand file tree Collapse file tree 1 file changed +26
-9
lines changed Expand file tree Collapse file tree 1 file changed +26
-9
lines changed Original file line number Diff line number Diff line change @@ -19,17 +19,34 @@ import {
19
19
import { ono } from "@jsdevtools/ono" ;
20
20
import maybe from "./util/maybe.js" ;
21
21
import type { ParserOptions } from "./options.js" ;
22
- import type { $RefsCallback , JSONSchema , SchemaCallback } from "./types/index.js" ;
22
+ import type {
23
+ Plugin ,
24
+ $RefsCallback ,
25
+ JSONSchema ,
26
+ SchemaCallback ,
27
+ HTTPResolverOptions ,
28
+ FileInfo ,
29
+ ResolverOptions ,
30
+ JSONSchemaObject ,
31
+ } from "./types/index.js" ;
23
32
24
- export { JSONParserError } ;
25
- export { InvalidPointerError } ;
26
- export { MissingPointerError } ;
27
- export { ResolverError } ;
28
- export { ParserError } ;
29
- export { UnmatchedParserError } ;
30
- export { UnmatchedResolverError } ;
33
+ export {
34
+ JSONSchemaObject ,
35
+ ResolverOptions ,
36
+ ParserError ,
37
+ UnmatchedResolverError ,
38
+ ResolverError ,
39
+ HTTPResolverOptions ,
40
+ FileInfo ,
41
+ UnmatchedParserError ,
42
+ ParserOptions ,
43
+ MissingPointerError ,
44
+ InvalidPointerError ,
45
+ JSONParserError ,
46
+ Plugin ,
47
+ } ;
31
48
32
- type RefParserSchema = string | JSONSchema ;
49
+ export type RefParserSchema = string | JSONSchema ;
33
50
34
51
/**
35
52
* This class parses a JSON schema, builds a map of its JSON references and their resolved values,
You can’t perform that action at this time.
0 commit comments