[typescript]type enum2

Tue Feb 11

typescript

Author:Noritaka

Astro
enum CoffeeSize {
  SHORT,
  TALL,
  GRANDE,
  VENTI,
};
const coffee = {
  hot: true,
  size: CoffeeSize.TALL,
}
coffee.size = CoffeeSize.SHORT;
coffee.size = 3;

typescript