mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-05 13:20:32 -05:00
46 lines
922 B
TypeScript
46 lines
922 B
TypeScript
import AuthorsAppState from './AuthorsAppState';
|
|
import CommandAppState from './CommandAppState';
|
|
import SettingsAppState from './SettingsAppState';
|
|
import TagsAppState from './TagsAppState';
|
|
|
|
interface FilterBuilderPropOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export interface FilterBuilderProp<T> {
|
|
name: string;
|
|
label: string;
|
|
type: string;
|
|
valueType?: string;
|
|
optionsSelector?: (items: T[]) => FilterBuilderPropOption[];
|
|
}
|
|
|
|
export interface PropertyFilter {
|
|
key: string;
|
|
value: boolean | string | number | string[] | number[];
|
|
type: string;
|
|
}
|
|
|
|
export interface Filter {
|
|
key: string;
|
|
label: string;
|
|
filers: PropertyFilter[];
|
|
}
|
|
|
|
export interface CustomFilter {
|
|
id: number;
|
|
type: string;
|
|
label: string;
|
|
filers: PropertyFilter[];
|
|
}
|
|
|
|
interface AppState {
|
|
authors: AuthorsAppState;
|
|
commands: CommandAppState;
|
|
settings: SettingsAppState;
|
|
tags: TagsAppState;
|
|
}
|
|
|
|
export default AppState;
|