UNPKG

nylas

Version:

A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.

11 lines (10 loc) 283 B
/** * Enum representing the different types of when objects. */ export var WhenType; (function (WhenType) { WhenType["Time"] = "time"; WhenType["Timespan"] = "timespan"; WhenType["Date"] = "date"; WhenType["Datespan"] = "datespan"; })(WhenType || (WhenType = {}));