refine types in decode.js

PiperOrigin-RevId: 545575363
This commit is contained in:
Evgenii Kliuchnikov 2023-07-05 06:35:14 +00:00 committed by Evgenii Kliuchnikov
parent bc32ae12d5
commit 28257b2e67
2 changed files with 3 additions and 3 deletions

View File

@ -2024,7 +2024,7 @@ let makeBrotliDecode = () => {
this.cdBrLength = 0; this.cdBrLength = 0;
/** @type {number} */ /** @type {number} */
this.cdBrCopied = 0; this.cdBrCopied = 0;
/** @type {!Array} */ /** @type {!Array<?Int8Array>} */
this.cdChunks = new Array(0); this.cdChunks = new Array(0);
/** @type {!Int32Array} */ /** @type {!Int32Array} */
this.cdChunkOffsets = new Int32Array(0); this.cdChunkOffsets = new Int32Array(0);

View File

@ -6,9 +6,9 @@
}, },
"files": [ "files": [
"cli.js", "cli.js",
"decode.js", "decode.js"
], ],
"dependencies": { "dependencies": {
"yargs": "~8.0.2" "yargs": "~8.0.2"
}, }
} }