标签: typescript types
我想定义一个表示某些错误代码的类型,该错误代码的值是1到100之间的数字。
现在我要做:
type ErrorCode = 1 | 2 | 3 | ...(many numbers) | 100
有什么方法可以使它更容易?