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) 134 B
/** * Make specific properties in T required */ export type RequiredProperties<T, K extends keyof T> = T & { [P in K]-?: T[P]; };