mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-16 21:15:33 -04:00
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;
|