Started on jellyfin search

This commit is contained in:
Eclypsed
2024-03-25 12:29:22 -04:00
parent cd8360851f
commit a05796dbd6
2 changed files with 52 additions and 8 deletions

1
src/app.d.ts vendored
View File

@@ -45,6 +45,7 @@ declare global {
interface Connection {
getRecommendations: () => Promise<MediaItem[]>
getConnectionInfo: () => Promise<ConnectionInfo>
search: (searchTerm: string) => Promise<MediaItem[]>
}
// These Schemas should only contain general info data that is necessary for data fetching purposes.
// They are NOT meant to be stores for large amounts of data, i.e. Don't include the data for every single song the Playlist type.