mirror of
https://github.com/Jellify-Music/App.git
synced 2026-03-18 03:00:35 -05:00
8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
|
|
export interface QueueMutation {
|
|
track: BaseItemDto;
|
|
index: number;
|
|
tracklist: BaseItemDto[];
|
|
queueName: string;
|
|
} |