Skip to content

Instantly share code, notes, and snippets.

@pixelkritzel
Created June 7, 2018 17:11
Show Gist options
  • Save pixelkritzel/6acef46b7a3adfb10a729231d38f27fc to your computer and use it in GitHub Desktop.
Save pixelkritzel/6acef46b7a3adfb10a729231d38f27fc to your computer and use it in GitHub Desktop.
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