👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2021-05-24 11:03:31 -05:00
parent 353b911620
commit ce9951d877

View file

@ -210,7 +210,7 @@ export class EmailSend implements INodeType {
// Send the email
const info = await transporter.sendMail(mailOptions);
returnData.push({ json: info });
returnData.push({ json: info as unknown as IDataObject });
}
return this.prepareOutputData(returnData);