@jjdenhertog/plex-music-search
Version:
Library to find tracks in your Plex Library
24 lines (23 loc) • 430 B
TypeScript
export type HubSearchTrackResult = {
type: "track";
id: string;
ratingKey: string;
guid: string;
score: number;
image: string;
title: string;
src?: string;
album: {
guid: string;
id: string;
title: string;
year: number;
image: string;
};
artist: {
guid: string;
id: string;
title: string;
image: string;
};
};