UNPKG

x-api-sdk-ts

Version:

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

10 lines (9 loc) 370 B
import { IHttpAdapter } from "../IHttpAdapter"; export interface IOAuthConstructor<Config, T> { new (config: Config, httpAdapter: IHttpAdapter): T; } export declare abstract class AbstractOAuthConstructor<Config> { protected readonly config: Config; protected readonly httpAdapter: IHttpAdapter; constructor(config: Config, httpAdapter: IHttpAdapter); }