[Remote] Actually fix auth (#260)

* fix favicon, basic auth

* actual fix......
This commit is contained in:
Kendall Garner
2023-09-25 00:31:33 +00:00
committed by GitHub
parent b375238baf
commit 9e3e038d42
3 changed files with 125 additions and 103 deletions
+11 -1
View File
@@ -53,4 +53,14 @@ export interface ClientVolume {
volume: number;
}
export type ClientEvent = ClientSimpleEvent | ClientFavorite | ClientRating | ClientVolume;
export interface ClientAuth {
event: 'authenticate';
header: string;
}
export type ClientEvent =
| ClientAuth
| ClientSimpleEvent
| ClientFavorite
| ClientRating
| ClientVolume;