mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
13 lines
314 B
TypeScript
13 lines
314 B
TypeScript
import AppSectionState, {
|
|
AppSectionDeleteState,
|
|
AppSectionSaveState,
|
|
} from 'App/State/AppSectionState';
|
|
import RootFolder from 'typings/RootFolder';
|
|
|
|
interface RootFolderAppState
|
|
extends AppSectionState<RootFolder>,
|
|
AppSectionDeleteState,
|
|
AppSectionSaveState {}
|
|
|
|
export default RootFolderAppState;
|