1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-28 23:16:32 -04:00

New: Quality limits are part of Quality Profile

Closes #613
This commit is contained in:
Mark McDowall
2024-04-27 14:49:15 -07:00
parent cde0a31ff0
commit 572bdc979c
45 changed files with 1196 additions and 657 deletions
@@ -62,6 +62,14 @@ export interface AppSectionItemState<T> {
item: T;
}
export interface AppSectionListState<T> {
isFetching: boolean;
isPopulated: boolean;
error: Error;
items: T[];
pendingChanges: Partial<T>[];
}
export interface AppSectionProviderState<T>
extends AppSectionDeleteState,
AppSectionSaveState {