ethiopian-date-picker-and-converter
Version:
A React component library for converting and picking Ethiopian dates.
11 lines (10 loc) • 362 B
TypeScript
import { DateConverterResult } from '../types';
export default class DateConverter {
readonly ethiopianMonths: string[];
private readonly ethiopianDays;
getMonthName(month: number): string;
private jdFromGregorian;
private ethiopianFromJD;
private parseDate;
convertGregorianToEthiopian(gregorianDate: string): DateConverterResult;
}