guilded-api-typings
Version:
Type definitions for the Guilded API.
16 lines • 713 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CalendarEventRsvpStatus = void 0;
/**
* The status of a calendar event RSVP.
* @see https://www.guilded.gg/docs/api/calendarEvents/CalendarEventRsvp
*/
var CalendarEventRsvpStatus;
(function (CalendarEventRsvpStatus) {
CalendarEventRsvpStatus["Going"] = "going";
CalendarEventRsvpStatus["Maybe"] = "maybe";
CalendarEventRsvpStatus["Declined"] = "declined";
CalendarEventRsvpStatus["Invited"] = "invited";
CalendarEventRsvpStatus["Waitlisted"] = "waitlisted";
})(CalendarEventRsvpStatus = exports.CalendarEventRsvpStatus || (exports.CalendarEventRsvpStatus = {}));
//# sourceMappingURL=CalendarEvent.js.map
;