tering-serieuze-types 2.13.2 → 2.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/interfaces/mopidy.ts +5 -2
- package/package.json +1 -1
package/interfaces/mopidy.ts
CHANGED
|
@@ -4,8 +4,9 @@ import { type URLTrack } from './webamp';
|
|
|
4
4
|
type Track = Mopidy.models.Track;
|
|
5
5
|
type Artist = Mopidy.models.Artist;
|
|
6
6
|
type Image = Mopidy.models.Image;
|
|
7
|
+
type SearchResult = Mopidy.models.SearchResult;
|
|
7
8
|
|
|
8
|
-
export type { Track, Artist, Image };
|
|
9
|
+
export type { Track, Artist, Image, SearchResult };
|
|
9
10
|
|
|
10
11
|
export enum PlaybackState {
|
|
11
12
|
playing = 'playing',
|
|
@@ -23,8 +24,10 @@ export interface MopidyData {
|
|
|
23
24
|
timeData: number;
|
|
24
25
|
}
|
|
25
26
|
|
|
27
|
+
export type AlarmschijfTrack = Track & { image: Image | undefined };
|
|
28
|
+
|
|
26
29
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
27
30
|
export type AlarmschijfResult = {
|
|
28
31
|
playlist: Track[];
|
|
29
|
-
alarmschijf?:
|
|
32
|
+
alarmschijf?: AlarmschijfTrack;
|
|
30
33
|
};
|