feat: made index main export option only

and added plugin type which i will add to it later on
This commit is contained in:
2026-04-22 14:58:18 +03:30
parent cc02d08f9f
commit 4977066961
2 changed files with 7 additions and 19 deletions

View File

@@ -35,3 +35,8 @@ export interface PlayerEvents {
onEnd?: () => void;
onError?: () => void;
}
export interface Plugin {
name: string;
init(player: any): void;
}