UNPKG

contentapi.ts

Version:

Nodejs library that provides high-level APIs for obtaining information on various entertainment media such as books, movies, comic books, anime, manga, and so on.

11 lines (10 loc) 369 B
import { ISource, IVideo, VideoExtractor } from '../models'; export declare class MegaUp extends VideoExtractor { #private; protected serverName: string; protected sources: IVideo[]; GenerateToken: (n: string) => string; DecodeIframeData: (n: string) => string; Decode: (n: string) => string; extract: (videoUrl: URL) => Promise<ISource>; }