mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-17 21:44:48 -04:00
14 lines
448 B
TypeScript
14 lines
448 B
TypeScript
import { AppSectionItemState } from 'App/State/AppSectionState';
|
|
import { Filter, FilterBuilderProp } from 'App/State/AppState';
|
|
import Indexer from 'Indexer/Indexer';
|
|
import { IndexerStats } from 'typings/IndexerStats';
|
|
|
|
export interface IndexerStatsAppState
|
|
extends AppSectionItemState<IndexerStats> {
|
|
filterBuilderProps: FilterBuilderProp<Indexer>[];
|
|
selectedFilterKey: string;
|
|
filters: Filter[];
|
|
}
|
|
|
|
export default IndexerStatsAppState;
|