feat: improve media playback experience

This commit is contained in:
codytseng 2025-10-11 23:19:07 +08:00
parent fb5434da91
commit 1f911c3a75
14 changed files with 353 additions and 66 deletions

View file

@ -41,6 +41,9 @@ export interface YouTubePlayer {
getCurrentTime(): number
getDuration(): number
getPlayerState(): number
isMuted(): boolean
mute(): void
unMute(): void
}
export {}