UNPKG

x-api-sdk-ts

Version:

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

11 lines (10 loc) 279 B
export interface IHttpFetchResponse<T> { ok: boolean; status: number; headers: Headers; json: () => Promise<T>; text: () => Promise<string>; } export interface IHttpAdapter { fetch<T>(url: string, options?: RequestInit): Promise<IHttpFetchResponse<T>>; }