UNPKG

comic-vine-sdk

Version:

A JS/TS client for the Comic Vine API

5 lines (4 loc) 139 B
import { Response } from './response.js'; export interface HttpClient { get<Result>(url: string): Promise<Response<Result> | never>; }