mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
93ee466780
(cherry picked from commit 6d552f2a60f44052079b5e8944f5e1bbabac56e0) Closes #3361
19 lines
393 B
TypeScript
19 lines
393 B
TypeScript
import AppSectionState, {
|
|
AppSectionDeleteState,
|
|
AppSectionSaveState,
|
|
} from 'App/State/AppSectionState';
|
|
import Author from 'Author/Author';
|
|
|
|
interface AuthorsAppState
|
|
extends AppSectionState<Author>,
|
|
AppSectionDeleteState,
|
|
AppSectionSaveState {
|
|
itemMap: Record<number, number>;
|
|
|
|
deleteOptions: {
|
|
addImportListExclusion: boolean;
|
|
};
|
|
}
|
|
|
|
export default AuthorsAppState;
|