Skip to content

Instantly share code, notes, and snippets.

@Falieson
Created May 31, 2018 16:44
Show Gist options
  • Save Falieson/fe20190a63d3cb385e711b3924d824f8 to your computer and use it in GitHub Desktop.
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))
/** 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