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 functions such as gzip, the type information on the second parameter is not formatted for JSDoc. When using a TypeScript environment, it asks for the second parameter to be fulfilled. Please either add options={} syntax so that the function header recognizes the optional nature of the second parameter, or use JSDoc notation so they are declared accordingly:
/**
* @param {Uint8Array|ArrayBuffer|string} data
* @param {object} [options]
*/
The text was updated successfully, but these errors were encountered:
Hi,
In functions such as
gzip
, the type information on the second parameter is not formatted for JSDoc. When using a TypeScript environment, it asks for the second parameter to be fulfilled. Please either add options={} syntax so that the function header recognizes the optional nature of the second parameter, or use JSDoc notation so they are declared accordingly:The text was updated successfully, but these errors were encountered: