fix: fix an issue with videodatachangefired timing

This commit is contained in:
JellyBrick
2023-11-30 00:45:15 +09:00
parent 4c0cce89ee
commit d78da237fc
5 changed files with 59 additions and 26 deletions

View File

@ -0,0 +1,6 @@
import type { VideoDataChangeValue } from '@/types/player-api-events';
export interface VideoDataChanged {
name: string;
videoData?: VideoDataChangeValue;
}