tauri-apps/tauri-bindgen

[bug] JS & TS guests can't decode u64 and s64 numbers

JonasKruckenberg opened this issue · 0 comments

The javascript and typescript guest modules can't decode signed and unsigned 64-bit numbers, because they can't be represented by JS's number type. BigInt would be a suitable type for u64 but it can only store positive numbers.