Skip to content

Commit

Permalink
Merge pull request #650 from m-clare/dev
Browse files Browse the repository at this point in the history
[JS] fix: type mismatch in fromByteArray: File3dm
  • Loading branch information
fraguada authored Oct 28, 2024
2 parents 9ab352e + 13834da commit 162d489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/rhino3dm.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2742,7 +2742,7 @@ declare module 'rhino3dm' {
* @description Read a 3dm file from a byte array
* @returns {File3dm} New File3dm on success, null on error.
*/
static fromByteArray(length:number, buffer: Uint8Array): File3dm;
static fromByteArray(buffer: Uint8Array): File3dm;
/** ... */
settings(): File3dmSettings;
/** ... */
Expand Down

0 comments on commit 162d489

Please sign in to comment.