-
Notifications
You must be signed in to change notification settings - Fork 0
/
MusicKit.SetQueueOptions.d.ts
39 lines (39 loc) · 1.18 KB
/
MusicKit.SetQueueOptions.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
declare namespace MusicKit {
/**
* The options to use when setting a music player's playback queue.
*/
interface SetQueueOptions {
/**
* The catalog album used to set a music player's playback queue.
*/
album?: string | undefined;
/**
* The media items used to set a music player's playback queue.
*/
items?: Descriptor[] | undefined;
/**
* The parameters used to set a music player's playback queue.
*/
parameters?: QueryParameters | undefined;
/**
* The playlist used to set a music player's playback queue.
*/
playlist?: string | undefined;
/**
* The song used to set a music player's playback queue.
*/
song?: string | undefined;
/**
* The songs used to set a music player's playback queue.
*/
songs?: string[] | undefined;
/**
* The start position for a set playback queue.
*/
startPosition?: number | undefined;
/**
* A content URL used to set a music player's playback queue.
*/
url?: string | undefined;
}
}