mimekit-ts - v1.0.0
    Preparing search index...

    Interface MimeEntityConstructorArgs

    Constructor state used by the parser when creating a MIME entity.

    interface MimeEntityConstructorArgs {
        parserOptions: ParserOptions;
        headers: Iterable<Header>;
        contentType: ContentType;
        hasBodySeparator: boolean;
        isTopLevel: boolean;
    }
    Index
    parserOptions: ParserOptions

    Parser options used when parsing headers and parameters.

    headers: Iterable<Header>

    The headers parsed for the entity.

    contentType: ContentType

    The parsed Content-Type header value.

    hasBodySeparator: boolean

    Whether the parser saw a body separator for this entity.

    isTopLevel: boolean

    Whether the entity is the top-level message body.