vtodogenerator
Version:
A library to generate VTODO compatible with RFC5545
15 lines • 673 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ErrorMessages = void 0;
var ErrorMessages = exports.ErrorMessages = /** @class */ (function () {
function ErrorMessages() {
}
ErrorMessages.invalidStartDate = ("start must be in ISO Date format.");
ErrorMessages.invalidGeo = "Invalid value of geo.";
ErrorMessages.invalidLocation = "Invalid value of location.";
ErrorMessages.invalidOrganizer = "Invalid value of organizer.";
ErrorMessages.invalidSequence = "Invalid value of sequence.";
ErrorMessages.invalidURL = "Invalid value of url.";
return ErrorMessages;
}());
//# sourceMappingURL=errors.js.map