mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add remote play menu to experimental layout
This commit is contained in:
parent
4397e4c724
commit
7ca3fcb8eb
7 changed files with 425 additions and 1 deletions
11
src/types/playTarget.ts
Normal file
11
src/types/playTarget.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import type { UserDto } from '@jellyfin/sdk/lib/generated-client/models/user-dto';
|
||||
|
||||
export interface PlayTarget {
|
||||
id: string
|
||||
name: string
|
||||
appName?: string
|
||||
playerName?: string
|
||||
deviceType?: string
|
||||
isLocalPlayer?: boolean
|
||||
user?: UserDto
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue