Zac Murray

Results 2 issues of Zac Murray

With [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) now a part of JavaScript, it would be nice for Decimal.JS to support it within its constructor and operations. As a workaround we can just convert bigint's to...

Consider the following proto ```proto service MathService { rpc Add(MathServiceAddRequest) returns (stream MathServiceAddResponse) {} } ``` Running `ts-proto` on this will generate the following: ```typescript export interface MathService { Add(request:...