Created
May 31, 2018 16:44
-
-
Save Falieson/fe20190a63d3cb385e711b3924d824f8 to your computer and use it in GitHub Desktop.
S1. F04. example of implicitAnyIndex in TypeScript (ARTICLE: TS-Module w/ Declarations (Part 1/4))
This file contains hidden or 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
| /** TS-Module w/ Declarations (Part 1/4) | |
| * http://TGRstack.com/#ts-module_articles_part-1 | |
| * example of ENUM w/ Redux ./tsconfig.json (Section 1. Figure 04.) | |
| **/ | |
| interface ISomeObject { | |
| firstKey: string; | |
| secondKey: string; | |
| thirdKey: string; | |
| [key: string]: string; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment