981377660LMT / ts

ts学习
6 stars 1 forks source link

How to make TypeScript enum restrict to specific number #512

Open 981377660LMT opened 5 months ago

981377660LMT commented 5 months ago

https://stackoverflow.com/questions/59205588/how-to-make-typescript-enum-restrict-to-specific-number

981377660LMT commented 5 months ago

如何限制 enum 类型必须传 enum 类型

981377660LMT commented 5 months ago
// use namespace as enum
export namespace ColorEnum {
  export const Red = 1
  export const Green = 2
  export const Blue = 3
}
export type ColorEnumType = (typeof ColorEnum)[keyof typeof ColorEnum]
981377660LMT commented 5 months ago

使用命名空间模拟枚举类型