Convert some selectors to Typescript

This commit is contained in:
Bogdan
2023-07-29 03:13:40 +03:00
parent eee1be784b
commit cab50b35aa
13 changed files with 86 additions and 22 deletions
+7 -1
View File
@@ -1,4 +1,8 @@
import IndexerAppState, { IndexerIndexAppState } from './IndexerAppState';
import CommandAppState from './CommandAppState';
import IndexerAppState, {
IndexerIndexAppState,
IndexerStatusAppState,
} from './IndexerAppState';
import IndexerStatsAppState from './IndexerStatsAppState';
import SettingsAppState from './SettingsAppState';
import TagsAppState from './TagsAppState';
@@ -36,8 +40,10 @@ export interface CustomFilter {
}
interface AppState {
commands: CommandAppState;
indexerIndex: IndexerIndexAppState;
indexerStats: IndexerStatsAppState;
indexerStatus: IndexerStatusAppState;
indexers: IndexerAppState;
settings: SettingsAppState;
tags: TagsAppState;