UNPKG

@authereum/resolution

Version:
10 lines (9 loc) 315 B
import { Response as FetchResponse } from 'node-fetch'; export default abstract class BaseConnection { protected isNode(): boolean; protected fetch(url: string, options: { body?: string; headers?: Record<string, string>; method?: string; }): Promise<FetchResponse | Response>; }