nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
12 lines (11 loc) • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FreeBusyType = void 0;
/**
* Enum representing the type of free/busy information returned for a calendar.
*/
var FreeBusyType;
(function (FreeBusyType) {
FreeBusyType["FREE_BUSY"] = "free_busy";
FreeBusyType["ERROR"] = "error";
})(FreeBusyType || (exports.FreeBusyType = FreeBusyType = {}));