serina
Version:
Natural Language Parser for date and time in Javascript
22 lines (21 loc) • 478 B
TypeScript
declare const MONTH: {
WITH_FUTURE_PAST_WORDS: string;
ANY: string;
SINGLE: {
JANUARY: string;
FEBRUARY: string;
MARCH: string;
APRIL: string;
MAY: string;
JUNE: string;
JULY: string;
AUGUST: string;
SEPTEMBER: string;
OCTOBER: string;
NOVEMBER: string;
DECEMBER: string;
};
NUMBERS: string;
PAST_WORDS: string;
};
export default MONTH;