1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

Convert Log Events to TypeScript

This commit is contained in:
Mark McDowall
2024-12-24 20:10:38 -08:00
parent 756e985b66
commit 23bc6a157c
11 changed files with 405 additions and 528 deletions
+2
View File
@@ -5,6 +5,7 @@ import Task from 'typings/Task';
import Update from 'typings/Update';
import AppSectionState, { AppSectionItemState } from './AppSectionState';
import BackupAppState from './BackupAppState';
import LogsAppState from './LogsAppState';
export type DiskSpaceAppState = AppSectionState<DiskSpace>;
export type HealthAppState = AppSectionState<Health>;
@@ -16,6 +17,7 @@ interface SystemAppState {
backups: BackupAppState;
diskSpace: DiskSpaceAppState;
health: HealthAppState;
logs: LogsAppState;
status: SystemStatusAppState;
tasks: TaskAppState;
updates: UpdateAppState;