UNPKG

gmail-getter

Version:

A simple tool that gets emails from the Gmail API

9 lines (8 loc) 254 B
import { Email } from './api'; /** * Parse HTML from email * @param {Email} email Email content * @returns {string} HTML content * @example const html = parseHtmlFromEmail(email) */ export declare const parseHtmlFromEmail: (email: Email) => string;