serina
Version:
Natural Language Parser for date and time in Javascript
20 lines (19 loc) • 423 B
TypeScript
declare const RELATIVE_TIME: {
ANY: string;
ARGUMENT_AFTER: string;
ARGUMENT_FIRST: string;
FILLER_WORDS: string;
TIME_UNITS: {
ANY: string;
HOURS: string;
MINUTES: string;
SECONDS: string;
};
VERBAL_QUANTIFIERS: {
ANY: string;
HALF: string;
QUARTER: string;
ONE: string;
};
};
export default RELATIVE_TIME;