Skip to content

Commit 28257b2

Browse files
committed
refine types in decode.js
PiperOrigin-RevId: 545575363
1 parent bc32ae1 commit 28257b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

js/decode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2024,7 +2024,7 @@ let makeBrotliDecode = () => {
20242024
this.cdBrLength = 0;
20252025
/** @type {number} */
20262026
this.cdBrCopied = 0;
2027-
/** @type {!Array} */
2027+
/** @type {!Array<?Int8Array>} */
20282028
this.cdChunks = new Array(0);
20292029
/** @type {!Int32Array} */
20302030
this.cdChunkOffsets = new Int32Array(0);

js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
},
77
"files": [
88
"cli.js",
9-
"decode.js",
9+
"decode.js"
1010
],
1111
"dependencies": {
1212
"yargs": "~8.0.2"
13-
},
13+
}
1414
}

0 commit comments

Comments
 (0)