UNPKG

@tianfeng98/hls.js

Version:

HLS.js is a JavaScript library that supports playing MPEG-TS and HEVC encoded HLS streams in browsers with support for MSE.

7 lines (6 loc) 117 B
export type Tail<T extends any[]> = ((...t: T) => any) extends ( _: any, ...tail: infer U ) => any ? U : [];