Can you tell if it possible to create enum like this in Typescript?
public enum FooEnum { ITEM_A(1), ITEM_B(2), ITEM_C(3); private int order; p