File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " codemirror-json-schema " : patch
3+ ---
4+
5+ Fixed type issue where barrel exported functions could not be imported without a type error
Original file line number Diff line number Diff line change @@ -27,7 +27,20 @@ export type {
2727 JSONPartialPointerData ,
2828} from "./types" ;
2929
30- export * from "./parsers/json-parser" ;
31- export * from "./utils/json-pointers" ;
30+ export {
31+ parseJSONDocumentState ,
32+ parseJSONDocument ,
33+ } from "./parsers/json-parser" ;
34+
35+ export {
36+ getJsonPointerAt ,
37+ jsonPointerForPosition ,
38+ getJsonPointers ,
39+ } from "./utils/json-pointers" ;
3240
33- export * from "./features/state" ;
41+ export {
42+ schemaStateField ,
43+ updateSchema ,
44+ getJSONSchema ,
45+ stateExtensions ,
46+ } from "./features/state" ;
You can’t perform that action at this time.
0 commit comments