Skip to content

Commit

Permalink
refine types in decode.js
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 545575363
  • Loading branch information
eustas committed Jul 5, 2023
1 parent bc32ae1 commit 28257b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/decode.js
Original file line number Diff line number Diff line change
Expand Up @@ -2024,7 +2024,7 @@ let makeBrotliDecode = () => {
this.cdBrLength = 0;
/** @type {number} */
this.cdBrCopied = 0;
/** @type {!Array} */
/** @type {!Array<?Int8Array>} */
this.cdChunks = new Array(0);
/** @type {!Int32Array} */
this.cdChunkOffsets = new Int32Array(0);
Expand Down
4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
},
"files": [
"cli.js",
"decode.js",
"decode.js"
],
"dependencies": {
"yargs": "~8.0.2"
},
}
}

0 comments on commit 28257b2

Please sign in to comment.