ts-proto
ts-proto copied to clipboard
Feature Request: Longs as BigInts
Feature request: In addition to the Long library, add ability to type longs as BigInts.
+1. Many years ago we chose to code UUID as 2x64 bit integers. The option--ts_proto_opt=forceLong=Long
made it work, it would be nice to have BigInt.
message UUID {
required fixed64 least_sign_bits = 1
required fixed64 most_sign_bits = 2
}
https://github.com/stephenh/ts-proto/pull/742
This was fixed by #742 ; thanks @azizghuloum !
Also filed https://github.com/stephenh/ts-proto/issues/744 as a follow up.