UNPKG

x-api-sdk-ts

Version:

TypeScript Library for the X (ex-twitter) API V2

5 lines (4 loc) 224 B
import { IHttpAdapter, IHttpFetchResponse } from "src/interfaces/IHttpAdapter"; export declare class FetchAdapter implements IHttpAdapter { fetch<T>(url: string, options?: RequestInit): Promise<IHttpFetchResponse<T>>; }