@drewsonne/maya-dates
Version:
Typescript package to manipulate dates in the Maya Calendar
10 lines (9 loc) • 328 B
TypeScript
import ICoefficient from "./iCoefficient";
export default class WildcardCoefficient implements ICoefficient {
isWildcard(): boolean;
isIn(validHaabCoeffs: number[]): Boolean;
validate(): boolean;
toString(): string;
equal(coefficient: ICoefficient): Boolean;
match(coefficient: ICoefficient): Boolean;
}