refactor: Upgrade to TypeScript 5.9.2 (#17955)

This commit is contained in:
Iván Ovejero
2025-08-06 09:29:09 +02:00
committed by GitHub
parent d6ee6067cf
commit 1bee0ddbf1
6 changed files with 514 additions and 529 deletions

View File

@@ -91,7 +91,7 @@ export class N8nBinaryLoader {
const binaryBuffer = await this.context.helpers.binaryToBuffer(
await this.context.helpers.getBinaryStream(binaryData.id),
);
return new Blob([binaryBuffer], {
return new Blob([binaryBuffer as BlobPart], {
type: mimeType,
});
} else {