Merge pull request #342 from eleith/eleith-timeout-type

prepare more fine grained type for node 20
This commit is contained in:
eleith 2023-09-05 20:45:34 -07:00 committed by GitHub
commit fc175932f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"name": "emailjs",
"description": "send text/html emails and attachments (files, streams and strings) from node.js to any smtp server",
"version": "4.0.2",
"version": "4.0.3",
"author": "eleith",
"contributors": [
"izuzak",

View File

@ -30,7 +30,7 @@ export class SMTPClient {
protected sending = false;
protected ready = false;
protected timer: NodeJS.Timer | null = null;
protected timer: NodeJS.Timeout | null = null;
/**
* Create a standard SMTP client backed by a self-managed SMTP connection.