This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Immutable JS's Record type allows you define maps that you can access with | |
* standard dot-notation instead of a get() method. It's mainly used for | |
* defining the shape of complex objects, such as the root state of a Redux | |
* component. | |
* | |
* Unfortunately, they basically don't work in TypeScript. Check this out: | |
*/ | |
import * as I from 'immutable'; |