Skip to content

Commit

Permalink
pass processed buffer 'as T'
Browse files Browse the repository at this point in the history
Signed-off-by: jace-roell <[email protected]>
  • Loading branch information
jace-roell committed Nov 18, 2024
1 parent f8799ec commit fcb259a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/imperative/src/io/src/IO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ export class IO {
bufferList.push(currentByte);
prevByte = currentByte;
}
processed = Buffer.from(bufferList);
processed = Buffer.from(bufferList) as T;
return processed;
}
}
Expand Down

0 comments on commit fcb259a

Please sign in to comment.