SYMBOL INDEX (17 symbols across 7 files) FILE: src/App.tsx function App (line 7) | function App() { FILE: src/actions/index.tsx type IncrementEnthusiasm (line 4) | interface IncrementEnthusiasm { type DecrementEnthusiasm (line 8) | interface DecrementEnthusiasm { type EnthusiasmAction (line 12) | type EnthusiasmAction = IncrementEnthusiasm | DecrementEnthusiasm; function incrementEnthusiasm (line 14) | function incrementEnthusiasm(): IncrementEnthusiasm { function decrementEnthusiasm (line 20) | function decrementEnthusiasm(): DecrementEnthusiasm { FILE: src/components/Hello.tsx type Props (line 4) | interface Props { function Hello (line 11) | function Hello({ name, enthusiasmLevel = 1, onIncrement, onDecrement }: ... function getExclamationMarks (line 33) | function getExclamationMarks(numChars: number) { FILE: src/constants/index.tsx constant INCREMENT_ENTHUSIASM (line 2) | const INCREMENT_ENTHUSIASM = 'INCREMENT_ENTHUSIASM'; type INCREMENT_ENTHUSIASM (line 3) | type INCREMENT_ENTHUSIASM = typeof INCREMENT_ENTHUSIASM; constant DECREMENT_ENTHUSIASM (line 5) | const DECREMENT_ENTHUSIASM = 'DECREMENT_ENTHUSIASM'; type DECREMENT_ENTHUSIASM (line 6) | type DECREMENT_ENTHUSIASM = typeof DECREMENT_ENTHUSIASM; FILE: src/containers/Hello.tsx function mapStateToProps (line 6) | function mapStateToProps({ enthusiasmLevel, languageName }: StoreState) { function mapDispatchToProps (line 13) | function mapDispatchToProps(dispatch: Dispatch) { FILE: src/reducers/index.tsx function enthusiasm (line 6) | function enthusiasm(state: StoreState, action: EnthusiasmAction): StoreS... FILE: src/types/index.tsx type StoreState (line 2) | interface StoreState {