mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import SystemStatus from 'typings/SystemStatus';
|
|
import Update from 'typings/Update';
|
|
import AppSectionState, { AppSectionItemState } from './AppSectionState';
|
|
|
|
export type SystemStatusAppState = AppSectionItemState<SystemStatus>;
|
|
export type UpdateAppState = AppSectionState<Update>;
|
|
|
|
interface SystemAppState {
|
|
updates: UpdateAppState;
|
|
status: SystemStatusAppState;
|
|
}
|
|
|
|
export default SystemAppState;
|