UNPKG

@zenvia/sdk

Version:

This SDK for [Node.js](https://nodejs.org/) was created based on the [Zenvia](https://www.zenvia.com/) [API](https://zenvia.github.io/zenvia-openapi-spec/).

9 lines (8 loc) 242 B
import { Headers } from 'request'; export interface IClientOptions { /** Custom headers that will be sent in every request. */ customHeaders?: Headers; } export interface IRequestOptions extends IClientOptions { formData?: any; }