Add initialSongId prop as alternative to initialIndex

This commit is contained in:
jeffvli 2023-05-20 20:47:07 -07:00
parent 06d253228a
commit 6747fbb701
2 changed files with 15 additions and 5 deletions

View file

@ -151,10 +151,11 @@ export enum TableColumn {
export type PlayQueueAddOptions = {
byData?: QueueSong[];
byItemType?: {
id: string[] | any;
id: string[];
type: LibraryItem;
};
initialIndex?: number;
initialSongId?: string;
playType: Play;
};