1
0
Fork 0
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:
Bill Thornton 2022-11-28 16:39:13 -05:00
parent 4397e4c724
commit 7ca3fcb8eb
7 changed files with 425 additions and 1 deletions

11
src/types/playTarget.ts Normal file
View 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
}