nylas
Version:
A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.
10 lines (9 loc) • 376 B
JavaScript
/**
* Enum representing the method used to determine availability for a meeting.
*/
export var AvailabilityMethod;
(function (AvailabilityMethod) {
AvailabilityMethod["MaxFairness"] = "max-fairness";
AvailabilityMethod["MaxAvailability"] = "max-availability";
AvailabilityMethod["Collective"] = "collective";
})(AvailabilityMethod || (AvailabilityMethod = {}));