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.
@@ -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?: Track & { image: Image | undefined };
32
+ alarmschijf?: AlarmschijfTrack;
30
33
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tering-serieuze-types",
3
- "version": "2.13.2",
3
+ "version": "2.13.4",
4
4
  "description": "Tering serieuze types",
5
5
  "author": "Frank",
6
6
  "repository": {