1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-07-14 16:30:27 +03:00
n8n/patches/@types__uuencode@0.0.3.patch
कारतोफ्फेलस्क्रिप्ट™ 68a6c81729
fix(Email Trigger (IMAP) Node): Handle attachments correctly (#9410)
2024-05-15 15:50:53 +02:00

11 lines
381 B
Diff

diff --git a/index.d.ts b/index.d.ts
index f8f89c567f394a538018bfdf11c28dc15e9c9fdc..f3d1cd426711f1f714744474604bd7e321073983 100644
--- a/index.d.ts
+++ b/index.d.ts
@@ -1,4 +1,4 @@
/// <reference types="node"/>
-export function decode(str: string | Buffer): string;
+export function decode(str: string | Buffer): Buffer;
export function encode(str: string | Buffer): string;