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