RockPaperScissors/node_modules/m3u8stream/dist/index.d.ts

32 lines
1,000 B
TypeScript
Raw Permalink Normal View History

2021-12-02 16:15:29 +00:00
/// <reference types="node" />
import { PassThrough } from 'stream';
import miniget from 'miniget';
declare namespace m3u8stream {
interface Options {
begin?: number | string;
liveBuffer?: number;
chunkReadahead?: number;
highWaterMark?: number;
requestOptions?: miniget.Options;
parser?: 'm3u8' | 'dash-mpd';
id?: string;
}
interface Progress {
num: number;
size: number;
duration: number;
url: string;
}
interface Stream extends PassThrough {
end: () => void;
on(event: 'progress', progress: Progress, totalSegments: number, downloadedBytes: number): this;
on(event: string | symbol, listener: (...args: any) => void): this;
}
interface m3u8streamFunc {
(playlistURL: string, options?: m3u8stream.Options): Stream;
parseTimestamp(time: number | string): number;
}
}
declare let m3u8stream: m3u8stream.m3u8streamFunc;
export = m3u8stream;