Convert createDimensionsSelector to typescript

This commit is contained in:
Bogdan
2024-04-21 13:08:56 +03:00
parent 4ff5d11a03
commit 478a185968
2 changed files with 11 additions and 1 deletions
+9
View File
@@ -42,7 +42,16 @@ export interface CustomFilter {
filers: PropertyFilter[];
}
export interface AppSectionState {
dimensions: {
isSmallScreen: boolean;
width: number;
height: number;
};
}
interface AppState {
app: AppSectionState;
commands: CommandAppState;
history: HistoryAppState;
indexerHistory: IndexerHistoryAppState;