File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,13 @@ import { MemoryRouter as Router } from 'react-router-dom';
3
3
import MainContainer from '../containers/MainContainer' ;
4
4
import { StoreContext } from '../store' ;
5
5
import mainReducer from '../reducers/mainReducer.js' ;
6
-
6
+ import { InitialStateProps } from '../components/FrontendTypes' ;
7
7
// currentTab is the current active tab within Google Chrome.
8
8
// This is used to decide what tab Reactime should be monitoring. This can be "locked"
9
9
// currentTabInApp is the current active tab within Reactime (Map, Performance, History, etc).
10
10
// This is used to determine the proper tutorial to render when How To button is pressed.
11
11
12
- const initialState : {
13
- port : null | number ;
14
- currentTab : null | number ;
15
- currentTitle : null | string ;
16
- split : null | boolean ;
17
- tabs : unknown ;
18
- currentTabInApp : null | string ;
19
- } = {
12
+ const initialState : InitialStateProps = {
20
13
port : null ,
21
14
currentTab : null ,
22
15
currentTitle : 'No Target' ,
You can’t perform that action at this time.
0 commit comments