protobuf.js
protobuf.js copied to clipboard
Support for jstype option
Any update on this? I've been running into issues where:
Example:
message SomeMessage {
int64 veryLongTimestamp = 1 [jstype=JS_STRING];
}
Then, when I try to create again...
// typeof veryLongTimestamp === 'string'
SomeMessage.create({ veryLongTimestamp });
// veryLongTimestamp expected to be number|Long
Is this no longer required or are there plans to update and merge this PR?