mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
43a0e75acf
(cherry picked from commit a57b35a1966266b49d1241474fe3b69523f70474)
11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
import SystemStatus from 'typings/SystemStatus';
|
|
import { AppSectionItemState } from './AppSectionState';
|
|
|
|
export type SystemStatusAppState = AppSectionItemState<SystemStatus>;
|
|
|
|
interface SystemAppState {
|
|
status: SystemStatusAppState;
|
|
}
|
|
|
|
export default SystemAppState;
|