UNPKG

chrono-node

Version:

A natural language date parser in Javascript

7 lines (6 loc) 407 B
import { ParsingContext } from "../../../chrono"; import { AbstractParserWithLeftRightBoundaryChecking } from "./AbstractParserWithWordBoundaryChecking"; export default class RUCasualTimeParser extends AbstractParserWithLeftRightBoundaryChecking { innerPatternString(context: ParsingContext): string; innerExtract(context: ParsingContext, match: RegExpMatchArray): import("..").ParsingComponents; }