mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-20 09:50:26 -06:00
8 lines
218 B
TypeScript
8 lines
218 B
TypeScript
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
|
|
export interface QueueMutation {
|
|
track: BaseItemDto;
|
|
index?: number | undefined;
|
|
tracklist: BaseItemDto[];
|
|
queueName: string;
|
|
} |