Skip to content

Commit

Permalink
fix(exports): export new error classes
Browse files Browse the repository at this point in the history
  • Loading branch information
BelfordZ committed Apr 12, 2019
1 parent e3393b7 commit 1b25072
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import parseOpenRPCDocument from "./parse-open-rpc-document";
import validateOpenRPCDocument from "./validate-open-rpc-document";
import parseOpenRPCDocument, { OpenRPCDocumentDereferencingError } from "./parse-open-rpc-document";
import validateOpenRPCDocument, { OpenRPCDocumentValidationError } from "./validate-open-rpc-document";
import { generateMethodParamId, generateMethodResultId } from "./generate-method-id";
import { MethodCallValidator, ParameterValidationError } from "./method-call-validator";

Expand All @@ -10,4 +10,6 @@ export {
validateOpenRPCDocument,
MethodCallValidator,
ParameterValidationError,
OpenRPCDocumentValidationError,
OpenRPCDocumentDereferencingError,
};

0 comments on commit 1b25072

Please # to comment.