Skip to content

Commit 35e4f16

Browse files
committed
Address new VS Code type warnings in remaining files.
1 parent 1320f87 commit 35e4f16

12 files changed

+345
-172
lines changed

append-to-array.mjs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ const sliceSize = 1000;
44

55
/**
66
* Efficiently appends the source array to the destination array.
7-
* @param {object[]} destination Destination Array.
8-
* @param {object[]} source Source Array.
7+
* @template T
8+
* @param {T[]} destination Destination Array.
9+
* @param {T[]} source Source Array.
910
* @returns {void}
1011
*/
1112
const appendToArray = (destination, source) => {

0 commit comments

Comments
 (0)