crunchy
Version:
Crunchy is a fork of Crunchyroll.js, capable of downloading anime episodes from the popular CrunchyRoll streaming service.
11 lines (10 loc) • 440 B
TypeScript
export declare function eatCookies(config: IConfig): void;
export declare function getUserAgent(): string;
/**
* Performs a GET request for the resource.
*/
export declare function get(config: IConfig, url: string, done: (err: any, result?: string) => void): void;
/**
* Performs a POST request for the resource.
*/
export declare function post(config: IConfig, url: string, form: any, done: (err: any, result?: string) => void): void;