mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add playback subscriber abstraction
This commit is contained in:
parent
2442dc6b52
commit
26f7f281cd
7 changed files with 209 additions and 1 deletions
|
@ -1,3 +1,4 @@
|
|||
import type { MediaType } from '@jellyfin/sdk/lib/generated-client/models/media-type';
|
||||
import type { UserDto } from '@jellyfin/sdk/lib/generated-client/models/user-dto';
|
||||
|
||||
export interface PlayTarget {
|
||||
|
@ -7,5 +8,7 @@ export interface PlayTarget {
|
|||
playerName?: string
|
||||
deviceType?: string
|
||||
isLocalPlayer?: boolean
|
||||
playableMediaTypes: MediaType[]
|
||||
supportedCommands?: string[]
|
||||
user?: UserDto
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue