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
WasmModule.prototype.validate = function (options) {
var features = new Features(options || ({}));
index.d.ts is missing a description of the options parameter. Ferreting around in the code, it looks like elsewhere in index.d.ts, WasmFeatures is defined, which seems to be intended to match the WebAssembly feature list described here.
I think that index.d.ts should say:
validate(options?: WasmFeatures): void;
The text was updated successfully, but these errors were encountered:
For the
validate
function,index.d.ts
declares:Here is the relevant code from
index.js
:index.d.ts
is missing a description of theoptions
parameter. Ferreting around in the code, it looks like elsewhere inindex.d.ts
,WasmFeatures
is defined, which seems to be intended to match the WebAssembly feature list described here.I think that
index.d.ts
should say:The text was updated successfully, but these errors were encountered: