@tiktikimelbo7/extensions
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.
12 lines (11 loc) • 326 B
TypeScript
import { VideoExtractor, IVideo, ISubtitle } from '../models';
declare class StreamHub extends VideoExtractor {
protected serverName: string;
protected sources: IVideo[];
extract: (videoUrl: URL) => Promise<{
sources: IVideo[];
} & {
subtitles: ISubtitle[];
}>;
}
export default StreamHub;