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