mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-22 22:18:14 +00:00
* chore: update type declarations * dev: refactor oauth & requester * chore: tidy things up * chore: remove unneeded check
14 lines
304 B
TypeScript
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");
|