Hi! I'm getting the following error in the browser implementation of Descriptor.read:
TypeError: Cannot convert a BigInt value to a number
at Uint8Array.slice (<anonymous>)
at Descriptor.read (filesystem.js:184:1)
According to the TS interface of Descriptor, it seems the write function should take BigInts. However, they are then passed to Uint8Array.slice which from my understanding expects Numbers.
I might be mistaken, but I expect there should be a conversion happening here?