mirror of
https://github.com/Jellify-Music/App.git
synced 2026-03-17 01:11:15 -05:00
15 lines
422 B
TypeScript
15 lines
422 B
TypeScript
import { QueuingType } from "../enums/queuing-type";
|
|
import { BaseItemDto } from "@jellyfin/sdk/lib/generated-client/models";
|
|
|
|
export interface QueueMutation {
|
|
track: BaseItemDto;
|
|
index?: number | undefined;
|
|
tracklist: BaseItemDto[];
|
|
queueName: string;
|
|
queuingType?: QueuingType | undefined;
|
|
}
|
|
|
|
export interface AddToQueueMutation {
|
|
track: BaseItemDto,
|
|
queuingType?: QueuingType | undefined;
|
|
} |