thrift2flow icon indicating copy to clipboard operation
thrift2flow copied to clipboard

Incorrect type for (js.type = "Date")

Open NameFILIP opened this issue 6 years ago • 0 comments

Thrift definition:

1: optional i64 (js.type = "Date") timestampMs;

Generated type:

timestampMs?: ?string,

while it should be:

timestampMs?: ?string | ?number,

According to https://github.com/thriftrw/thriftrw/blob/master/annotations.md#timestamps

will accept an ISO-8601 timestamp or milliseconds since the epoch (as returned by Date.now())

NameFILIP avatar Oct 03 '19 20:10 NameFILIP