UNPKG

@cull/imap

Version:

A simple, configurable javascript interface exposing mailboxes and messages via IMAP.

16 lines (15 loc) 389 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * __An Electronic Mail Message__ * @link https://tools.ietf.org/html/rfc3501#section-2.3 * @link https://tools.ietf.org/html/rfc2822 * @link https://tools.ietf.org/html/rfc2045 */ class Message { constructor() { this.flags = []; } } exports.Message = Message; exports.default = Message;