@rr0/time
Version:
EDTF parsing
22 lines • 800 B
text/typescript
/** @import { EDTFValidator } from "./validator/EDTFValidator.mjs" */
export class GregorianMonth extends CalendarUnit {
static Month28: GregorianMonth;
static Month29: GregorianMonth;
static ThirtyDays: GregorianMonth;
static ThirtyOneDays: GregorianMonth;
/**
*
* @param {number} monthValue
* @param {number|undefined} yearValue
* @return {GregorianMonth}
*/
static create(monthValue: number, yearValue: number | undefined): GregorianMonth;
/**
* @param {number} days
* @param {EDTFValidator} validator
*/
constructor(days: number, validator?: EDTFValidator);
}
import { CalendarUnit } from "./CalendarUnit.mjs";
import type { EDTFValidator } from "./validator/EDTFValidator.mjs";
//# sourceMappingURL=GregorianMonth.d.mts.map