Files
youtube-music/src/types/video-data-changed.ts
2023-11-30 00:45:15 +09:00

7 lines
162 B
TypeScript

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