@drewsonne/maya-dates
Version:
Typescript package to manipulate dates in the Maya Calendar
10 lines (9 loc) • 352 B
TypeScript
import { CalendarRound } from "../cr/calendar-round";
import { IPart } from "../i-part";
import { CommentWrapper } from "../comment-wrapper";
export default class CalendarRoundWildcard extends CommentWrapper implements IPart {
private readonly cr;
constructor(cr: CalendarRound);
run(): CalendarRound[];
equal(other: IPart): boolean;
}