Add stream health overview component

This commit is contained in:
Gabe Kangas
2022-03-24 23:21:57 -07:00
parent 58acc7a449
commit 65efdb91b9
4 changed files with 79 additions and 0 deletions
+6
View File
@@ -125,6 +125,12 @@ export interface NotificationsConfig {
twitter: TwitterNotification;
}
export interface Health {
healthy: boolean;
healthyPercentage: number;
message: string;
}
export interface ConfigDetails {
externalActions: ExternalAction[];
ffmpegPath: string;