11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
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
|
|
}
|