We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f5f8aa commit 5cb8ea9Copy full SHA for 5cb8ea9
assembly/node.d.ts
@@ -4,5 +4,5 @@ declare class Buffer extends Uint8Array {
4
/** This method allocates a new Buffer of indicated size. This is unsafe because the data is not zeroed. */
5
static allocUnsafe(size: i32): Buffer;
6
/** This method concatenates an array of `U extends Uint8Array` objects. */
7
- static concat<T extends Uint8Array[]>(list: T, totalLength: i32): Buffer;
+ static concat(list: Buffer[], totalLength: i32): Buffer;
8
}
0 commit comments