Consider the following enums:
export enum Category {
FOOD = 'food',
DRINK = 'drink'
}
export enum Type {
COLD = 'cold',
HOT = 'hot'
}
Can these be combined into a single enum?
For example:
export enum Products {
Category {
FOOD = 'food',
DRINK = 'drink'
},
Type {
COLD = 'cold',
HOT = 'hot'
}
}