UNPKG

@drewsonne/maya-calculator-parser

Version:

Typescript package to parse plaintext calculations and create operators

9 lines 455 B
import { Token } from "../base"; import CalendarRoundToken from "../layer-1/calendar-round-token"; import LongCountToken from "../layer-1/long-count-token"; import { IToken } from "../i-token"; export default class FullDateToken extends Token<[CalendarRoundToken, LongCountToken]> { equal(otherToken: IToken): boolean; static parse(former: CalendarRoundToken, latter: LongCountToken): FullDateToken; } //# sourceMappingURL=full-date-token.d.ts.map