UNPKG

africastalking-ts

Version:

Unofficial Typescript version of the Africa's Talking SDK

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