Skip to content

Commit

Permalink
Add comments to SDKOptions definition
Browse files Browse the repository at this point in the history
  • Loading branch information
orenyomtov committed Jan 19, 2023
1 parent 2ede51d commit 82bdd16
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fireblocks-sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ import { AxiosProxyConfig } from "axios";
export * from "./types";

export interface SDKOptions {
timeoutInMs?: number;
proxy?: AxiosProxyConfig | false;
anonymousPlatform?: boolean;
userAgent?: string;
timeoutInMs?: number; // HTTP request timeout
proxy?: AxiosProxyConfig | false; // Proxy configuration
anonymousPlatform?: boolean; // Whether to remove platform from User-Agent header
userAgent?: string; // Additional product identifier to be prepended to the User-Agent header
}

export class FireblocksSDK {
Expand Down

0 comments on commit 82bdd16

Please sign in to comment.