typescript中枚举的用法

//枚举
const enum Color {
    Yellow = '#fff000',
    Blue = '#01ccff',
    Red = '#ff0000'
  }
  
let c: Color = Color.Red;
console.log(c);// #ff0000

你可能感兴趣的:(前端开发,typescript,typescript)