标签: typescript typescript-typings
在声明类型时可以声明一个特定的值吗?
例如,我已经看过很多次了:
const x: 'foo'| 'bar' = 'foo'
代替:
const x: string='foo'