UNPKG

africastalking-ts

Version:

Unofficial Typescript version of the Africa's Talking SDK

10 lines (9 loc) 260 B
import { EndpointCategory } from './getUrl.types'; export interface SendRequestOptions<PostData, Params> { endpointCategory: EndpointCategory; username: string; method: 'GET' | 'POST'; data?: PostData; headers?: any; params?: Params; }