diff --git a/src/index.ts b/src/index.ts index 4648d9c..1d58f33 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,13 +1,19 @@ -export { jsonCompletion } from "./json-completion.js"; +export { + jsonCompletion, + JSONCompletion, + type JSONCompletionOptions, +} from "./json-completion.js"; export { jsonSchemaLinter, + JSONValidation, type JSONValidationOptions, handleRefresh, } from "./json-validation.js"; export { jsonSchemaHover, + JSONHover, type HoverOptions, type FoundCursorData, type CursorData,