From fbbf6961cf09416ef5be8a8a8c23f8b3c670a237 Mon Sep 17 00:00:00 2001 From: db123 Date: Thu, 23 Apr 2026 02:23:34 +0330 Subject: [PATCH] fix: made vp class accessible globally --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0d88028..68be599 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,5 +5,5 @@ * creation: 21/4/2026 */ -export { VP } from "./core/index"; -export type { PlayerConfig, Plugin } from "./types/index"; +import { VP } from "./core/VideoPlayer"; +export default VP;