UNPKG

@opra/client

Version:
13 lines (12 loc) 428 B
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; }