jewish-calendar
Version:
A comprehensive Jewish Calendar library for date conversion and calculations
21 lines (20 loc) • 500 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.JewishDate = void 0;
class JewishDate {
constructor(year, month, day) {
this.year = year;
this.month = month;
this.day = day;
}
static fromGregorian(date) {
throw new Error('Not implemented');
}
toGregorian() {
throw new Error('Not implemented');
}
toString() {
throw new Error('Not implemented');
}
}
exports.JewishDate = JewishDate;