source-scraper-jwplayer-runner
Version:
Provides the JWPlayerRunner class for scrapping.
15 lines (14 loc) • 406 B
TypeScript
import { ISource, Source } from 'source-scraper-core';
export interface IJWPlayerSource extends ISource {
default: boolean;
label: string;
type: string;
preload: string;
}
export declare class JWPlayerSource extends Source implements IJWPlayerSource {
default: boolean;
label: string;
type: string;
preload: string;
constructor(source: IJWPlayerSource);
}