@gviper/alphavantage-api
Version:
TypeScript SDK for Alpha Vantage API with comprehensive type safety and all endpoint support
19 lines • 561 B
TypeScript
export interface AlphaVantageClientOptions {
apiKey: string;
baseUrl?: string;
timeout?: number;
retryAttempts?: number;
retryDelay?: number;
}
export declare class AlphaVantageClient {
private apiKey;
private baseUrl;
private timeout;
private retryAttempts;
private retryDelay;
private axiosInstance;
constructor(options: AlphaVantageClientOptions);
private createAxiosInstance;
request<T>(params: Record<string, string | number | boolean | undefined>): Promise<T>;
}
//# sourceMappingURL=client.d.ts.map