@drewsonne/maya-dates
Version:
Typescript package to manipulate dates in the Maya Calendar
13 lines (12 loc) • 431 B
TypeScript
import LongCount from "./lc/long-count";
import { CalendarRound } from "./cr/calendar-round";
import { IPart } from "./i-part";
import { CommentWrapper } from "./comment-wrapper";
export default class FullDate extends CommentWrapper implements IPart {
cr: CalendarRound;
lc: LongCount;
constructor(cr: CalendarRound, lc: LongCount);
toString(): string;
isPartial(): boolean;
equal(other: IPart): boolean;
}