UNPKG

servertap-js

Version:

A TypeScript library for working with the ServerTap API

8 lines (7 loc) 255 B
import { Config } from './types'; export declare abstract class Base { private apiKey; private baseUrl; constructor(config: Config); protected request<T>(endpoint: string, options?: RequestInit, contentType?: string): Promise<T>; }