Files
YouTube.js/typings/lib/utils/Request.d.ts
LuanRT 84d5edb6f0 refactor: rewrite OAuth and Requester (#90)
* chore: update type declarations

* dev: refactor oauth & requester

* chore: tidy things up

* chore: remove unneeded check
2022-07-04 16:34:02 -03:00

14 lines
304 B
TypeScript

export = Request;
declare class Request {
constructor(config: any);
config: any;
setSession(session: any): void;
/**
* Returns the axios instance.
* @returns {Axios.AxiosInstance}
*/
get instance(): Axios.AxiosInstance;
#private;
}
import Axios = require("axios");