@phensley/cldr-core
Version:
Core library for @phensley/cldr
94 lines • 2.11 kB
JavaScript
// Placeholder for remaining calendars to implement
Object.defineProperty(exports, "__esModule", { value: true });
/**
* A date in the Traditional Chinese calendar.
*
* type: chinese
*/
var ChineseDate = /** @class */ (function () {
function ChineseDate() {
}
return ChineseDate;
}());
exports.ChineseDate = ChineseDate;
/**
* A date in the Coptic calendar.
*
* type: coptic
*/
var CopticDate = /** @class */ (function () {
function CopticDate() {
}
return CopticDate;
}());
exports.CopticDate = CopticDate;
/**
* A date in the Ethiopic calendar, supporting era types:
*
* ethiopic Amete Mihret (epoch approx. 8 C.E.)
* ethiopic-amete-alem Amete Alem (epoch approx. 5493 B.C.E)
*/
var EthiopicDate = /** @class */ (function () {
function EthiopicDate() {
}
return EthiopicDate;
}());
exports.EthiopicDate = EthiopicDate;
/**
* A date in the Traditional Hebrew calendar.
*
* type: hebrew
*/
var HebrewDate = /** @class */ (function () {
function HebrewDate() {
}
return HebrewDate;
}());
exports.HebrewDate = HebrewDate;
/**
* A date in the Indian calendar.
*/
var IndianDate = /** @class */ (function () {
function IndianDate() {
}
return IndianDate;
}());
exports.IndianDate = IndianDate;
/**
* A date in the Islamic calendar supporting the calculation types:
*
* islamic-civil Civil
* islamic-tbla Tabular
* islamic-rgsa Saudi Arabia sighting
* islamic-ummalqura Umm al-Qura,
*/
var IslamicDate = /** @class */ (function () {
function IslamicDate() {
}
return IslamicDate;
}());
exports.IslamicDate = IslamicDate;
/**
* A date in the Traditional Korean calendar.
*
* type: dangi
*/
var KoreanDate = /** @class */ (function () {
function KoreanDate() {
}
return KoreanDate;
}());
exports.KoreanDate = KoreanDate;
/**
* A date in the Republic of China calendar.
*
* type: roc
*/
var ROCDate = /** @class */ (function () {
function ROCDate() {
}
return ROCDate;
}());
exports.ROCDate = ROCDate;
//# sourceMappingURL=placeholder.js.map
;