Skip to content

Commit

Permalink
Fixed the signature of concat, that takes as input an array
Browse files Browse the repository at this point in the history
  • Loading branch information
dcappellin committed Nov 20, 2015
1 parent bf9c2fe commit 1d23a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bytebuffer/bytebuffer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1d23a69

Please sign in to comment.