使用 flow 请问怎么让参数只能为可选值呢?
例如:
function test (x: number) { console.log(x); }
怎么让 x 期望是 数字 1 或者 2
enum XXOOType {XX = 1; OO = 2;};
function xxoo(type: XXOOType) {}
看了一下原来是flow,那就是这样
const xxoo_type = {XX: 1, OO: 2};
type XXOOType = $Values<typeof xxoo_type>;
2.1m questions
2.1m answers
60 comments
57.0k users