mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Fixed the signature of concat, that takes as input an array
This commit is contained in:
Vendored
+1
-1
@@ -131,7 +131,7 @@ declare class ByteBuffer
|
||||
/**
|
||||
* Concatenates multiple ByteBuffers into one.
|
||||
*/
|
||||
static concat( buffers: Array<ByteBuffer> | ArrayBuffer | Uint8Array | string, encoding?: string | boolean, litteEndian?: boolean, noAssert?: boolean ): ByteBuffer;
|
||||
static concat( buffers: Array<ByteBuffer | ArrayBuffer | Uint8Array | string>, encoding?: string | boolean, litteEndian?: boolean, noAssert?: boolean ): ByteBuffer;
|
||||
|
||||
/**
|
||||
* Decodes a base64 encoded string to a ByteBuffer.
|
||||
|
||||
Reference in New Issue
Block a user