10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
/**
|
|
* VideoPlayer is a modular private video player build with hls.js and dash.js in mind
|
|
*
|
|
* author: db123 at db
|
|
* creation: 21/4/2026
|
|
*/
|
|
|
|
export { VP } from "./core/index";
|
|
export type { PlayerConfig, Plugin } from "./types/index";
|