chadxz / imap-simple

Wrapper over node-imap, providing a simpler api for common use cases
MIT License
243 stars 80 forks source link

fix: change uid type in comments to number #88

Closed mHooshdar closed 3 years ago

mHooshdar commented 3 years ago

As the node-imap package says:

uid - integer - A 32-bit ID that uniquely identifies this message within its mailbox.

so uid is an integer but in the imap-simple comments it is an integer.

before this PR, I fixed the uid type in the @types/imap-simple and in this PR I fixed the uid type to number in the comments.