作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以获得表示接口(interface)键的类型:
interface I { a: string; b: string; }
const i: keyof I; // typeof i is "a" | "b"
有没有一种方法可以类似地获取表示枚举值的类型?
enum E { A = "a", B = "b" }
const e: ?; // typeof e is "a" | "b"
最佳答案
在 template literal 的一些帮助下,可以将枚举的值列表推断为一种类型运算符(operator):
enum E { A = "a", B = "b" }
type EValue = `${E}`
// => type EValue = "a" | "b"
const value: EValue = "a" // => ✅ Valid
const valid: EValue = "b" // => ✅ Valid
const valid: EValue = "🤡" // => 🚨 Invalid
引用文章:Get the values of an enum dynamically(免责声明:作者在这里)
关于typescript - 枚举值的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53016066/
我是一名优秀的程序员,十分优秀!