1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

New: Kometa metadata file creation disabled

Closes #7400
This commit is contained in:
Mark McDowall
2024-12-01 16:20:55 -08:00
committed by GitHub
parent fb9a5efe05
commit c62fc9d05b
30 changed files with 445 additions and 599 deletions
+10
View File
@@ -63,6 +63,16 @@ export interface AppSectionItemState<T> {
item: T;
}
export interface AppSectionProviderState<T>
extends AppSectionDeleteState,
AppSectionSaveState {
isFetching: boolean;
isPopulated: boolean;
error: Error;
items: T[];
pendingChanges: Partial<T>;
}
interface AppSectionState<T> {
isFetching: boolean;
isPopulated: boolean;