Updated @types/node to v14, fixed TS breaking with changes

This commit is contained in:
Rupenieks
2020-08-12 12:19:41 +02:00
parent 3ef6f031ec
commit a69098a096
10 changed files with 12 additions and 9 deletions

View File

@@ -336,7 +336,7 @@ export class MoveBinaryData implements INodeType {
continue;
}
const encoding = (options.encoding as string) || 'utf8';
const encoding = (options.encoding as BufferEncoding) || 'utf8';
let convertedValue = value.data;
if (setAllData === true) {