export const INCREMENT_ENTHUSIASM = 'INCREMENT_ENTHUSIASM';
export type INCREMENT_ENTHUSIASM = typeof INCREMENT_ENTHUSIASM;
export const DECREMENT_ENTHUSIASM = 'DECREMENT_ENTHUSIASM';
export type DECREMENT_ENTHUSIASM = typeof DECREMENT_ENTHUSIASM;
what is happening here? I am not able to understand this.It is very confusing This is from here https://github.com/Microsoft/TypeScript-React-Starter under Adding actions section.
I know what type keyword do but it seems very confusing here.
