Created
June 7, 2018 17:11
-
-
Save pixelkritzel/6acef46b7a3adfb10a729231d38f27fc to your computer and use it in GitHub Desktop.
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
type IItem = { | |
key: number, | |
text: string | |
} | |
const items: IItem[] = [{key: 0, text: ''}] | |
// it says type never[] isn't assignable to type [{ text: string}] | |
for (let index = 1; index < 11; index++) { | |
items.push({ | |
key: index, | |
text: `No. ${index} Item` | |
}); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment