UNPKG

@silverbirder/rminc

Version:

rMinc is the Google Apps Script Library that register Mail in Calendar

10 lines (9 loc) 244 B
/// <reference types="google-apps-script" /> export default interface IMailMessage { subject?: string; body?: string; date?: Date; getSubject(): string; getBody(): string; getDate(): Date | GoogleAppsScript.Base.Date; }