Skip to content

Commit

Permalink
fix: type mismatch in fromByteArray: File3dm
Browse files Browse the repository at this point in the history
  • Loading branch information
m-clare committed Oct 22, 2024
1 parent d347e23 commit 13834da
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 13834da

Please sign in to comment.