UNPKG

unified-video-framework

Version:

Cross-platform video player framework supporting iOS, Android, Web, Smart TVs (Samsung/LG), Roku, and more

15 lines (11 loc) 481 B
/** * Unified Video Framework - TypeScript Definitions */ export * from './packages/core/dist/index'; export * from './packages/web/dist/index'; // Re-export the main classes export { VideoPlayerFactory, BasePlayer } from './packages/core/dist/index'; export { WebPlayer, WebPlayerView } from './packages/web/dist/index'; // Export namespaces for sub-packages export * as core from './packages/core/dist/index'; export * as web from './packages/web/dist/index';