Document bridge messages

This commit is contained in:
hensm
2022-03-17 02:22:38 +00:00
parent 936a92a5a5
commit 0bff48e1a3
4 changed files with 272 additions and 94 deletions

View File

@@ -49,14 +49,14 @@ export interface ReceiverStatus {
volume: Volume;
}
export interface CastSessionUpdated {
export interface CastSessionUpdatedDetails {
sessionId: string;
statusText: string;
namespaces: Array<{ name: string }>;
volume: Volume;
}
export interface CastSessionCreated extends CastSessionUpdated {
export interface CastSessionCreatedDetails extends CastSessionUpdatedDetails {
appId: string;
appImages: Image[];
displayName: string;