what’s the best strategy to represent Long’s for a...
# multiplatform
s
what’s the best strategy to represent Long’s for a library which is expected to be consumed by JS devs who rely on generated typescript definitions. A utility i’m working has a lot of data that would need to be Long but generated descriptions all map to Any. If there’s no way around it, are their interoperability issues? Should they use Strings or bigint on their side to map values? And is their some way I can force generated typescripts to use bigint instead of Any? Not able to reason for why Any was chosen instead of bigint given it’s available in all browses ootb