New styling on connection profiles

This commit is contained in:
Eclypsed
2024-02-12 12:22:17 -05:00
parent a8241c6e19
commit 269d79327e
5 changed files with 25 additions and 24 deletions

3
src/app.d.ts vendored
View File

@@ -24,6 +24,7 @@ declare global {
interface Service {
type: 'jellyfin' | 'youtube-music'
userId: string
username: string
urlOrigin: string
}
@@ -95,7 +96,6 @@ declare global {
// So, ONLY DEFINE THE INTERFACES FOR DATA THAT IS GARUNTEED TO BE RETURNED (unless the data value itself is inherently optional)
interface JFService extends Service {
type: 'jellyfin'
username: string
serverName: string
}
@@ -178,7 +178,6 @@ declare global {
namespace YouTubeMusic {
interface YTService extends Service {
type: 'youtube-music'
username: string
profilePicture?: string
}