mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-18 21:55:12 -04:00
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { AppSectionItemState } from 'App/State/AppSectionState';
|
|
import { Filter } from 'App/State/AppState';
|
|
import { IndexerStats } from 'typings/IndexerStats';
|
|
|
|
export interface IndexerStatsAppState
|
|
extends AppSectionItemState<IndexerStats> {
|
|
selectedFilterKey: string;
|
|
filters: Filter[];
|
|
}
|
|
|
|
export default IndexerStatsAppState;
|