@sixbell-telco/sdk
Version:
A collection of reusable components designed for use in Sixbell Telco Angular projects
12 lines (11 loc) • 320 B
TypeScript
export interface HttpClientOptions {
retries?: number;
retryDelayMs?: number;
timeoutMs?: number;
}
export declare class RuntimeHttpClient {
private readonly options;
constructor(options?: HttpClientOptions);
fetch(url: string, init?: RequestInit): Promise<Response>;
private attemptFetch;
}