UNPKG

@querc/squidex-client

Version:

NodeJS client for the [Squidex](https://squidex.io/) CMS

11 lines (10 loc) 446 B
import { SquidexClientConfiguration } from '../configuration'; import { HttpClient, HttpSendParams } from './http-client'; /** * Basically just wrapper around node-fetch, with some Squidex specific things & error handling */ export declare class NodeFetchClient implements HttpClient { private readonly config; constructor(config: SquidexClientConfiguration); send<TReq = any, TRes = TReq>(params: HttpSendParams): Promise<TRes>; }