mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 02:31:45 +00:00
16 lines
328 B
TypeScript
16 lines
328 B
TypeScript
export interface PlayerAPIEvents {
|
|
videodatachange: {
|
|
value: Record<string, unknown> & {
|
|
videoId: string
|
|
title: string
|
|
author: string
|
|
|
|
playlistId: string
|
|
isUpcoming: boolean
|
|
loading: boolean
|
|
|
|
lengthSeconds: number
|
|
}
|
|
} & ({ name: 'dataloaded' } | { name: 'dataupdated ' })
|
|
}
|