Prowlarr/frontend/src/App/State/SystemAppState.ts
2023-07-30 21:06:44 +03:00

10 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;