mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
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;
|