@opra/client
Version:
Opra Client package
13 lines (12 loc) • 428 B
TypeScript
import { kBackend } from '../constants.js';
import { FetchBackend } from './fetch-backend.js';
import { HttpClientBase } from './http-client-base.js';
/**
*
* @class OpraHttpClient
*/
export declare class OpraHttpClient extends HttpClientBase<FetchBackend.RequestOptions> {
[kBackend]: FetchBackend;
constructor(serviceUrl: string, options?: FetchBackend.Options);
get defaults(): FetchBackend.RequestDefaults;
}