如何在打字稿中使用枚举?

时间:2018-07-18 11:27:24

标签: typescript enums

我想使用带有枚举数组的prototype.array.includes medthod作为:

export enum Item {
  item1,
  item2,
  item3
} 

var tab:item[] = [Item.item1, Item.item2]
tab.includes(Item.item1) //this doesn't work

你知道原因吗?它仅适用于原始类型吗?您有其他选择吗?

0 个答案:

没有答案