source-scraper-core
Version:
Core files for the SourceScraper-Project
15 lines (14 loc) • 367 B
TypeScript
export interface ISource {
url: string;
type?: string;
codec?: string;
resolution?: string;
}
export declare class Source implements ISource {
url: string;
type?: string;
codec?: string;
resolution?: string;
constructor({ url, type, codec, resolution }: ISource);
getNormalizedResolution(): number | undefined;
}