使用 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>;
548k questions
547k answers
4 comments
86.3k users