Optional tuple in TS gets converted into optional second value
Booksbaum opened this issue · 0 comments
Booksbaum commented
interface A {
value?: [number, number];
}==>
type [<AllowNullLiteral>] A =
abstract value: float * float option with get, setvalue is float * Option<float>, but should be Option<float * float>