@saysimple/node-sdk
Version:
The official SaySimple Node SDK. Want to use our awesome customer conversations platform? Please visit: https://saysimple.com
10 lines (6 loc) • 306 B
text/typescript
import { Response } from "../../base/response";
export interface HttpClientInterface {
get<T>(url: string, data?: unknown): Promise<Response<T>>;
post<T>(url: string, data?: unknown): Promise<Response<T>>;
request<T>(httpMethod: string, url: string, data?: unknown): Promise<Response<T>>;
}