Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ export { default as HttpURLConnectionClient } from "./httpClient/httpURLConnecti
// Export a custom exception for HTTP client errors
export { default as HttpClientException } from "./httpClient/httpClientException";

// Export NexoCrypto for local terminal API security
// Export NexoCrypto and its exceptions for local terminal API security
export { default as NexoCrypto } from "./security/nexoCrypto";
export { default as InvalidSecurityKeyException } from "./security/exception/invalidSecurityKeyException";

// Export all the typings under the `Types` namespace
export * as Types from "./typings";
Expand Down