UNPKG

node-ttv

Version:

A Node.js wrapper for Twitch.tv's helix API.

10 lines (9 loc) 273 B
export { webRequest }; export declare enum Method { GET = "GET", POST = "POST", PUT = "PUT", PATCH = "PATCH", DELETE = "DELETE" } declare function webRequest(hostname: string, path: string, postData: any, headers: any, method: Method): Promise<string>;