You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my testing, new Buffer.alloc(16) does not throw an exception, so it seems the solution is to update the signature of the type to allow (size: number) => {[index: number]:number;}; as a valid argument.
The text was updated successfully, but these errors were encountered:
The documentation shows invoking the parse functions with the out parameter like this:
However, this is incompatible with the typescript definition:
In my testing,
new Buffer.alloc(16)
does not throw an exception, so it seems the solution is to update the signature of the type to allow(size: number) => {[index: number]:number;};
as a valid argument.The text was updated successfully, but these errors were encountered: