@blueprintjs/datetime
Version:
Components for interacting with dates and times
21 lines (20 loc) • 391 B
TypeScript
/**
* Enumeration of calendar months.
*
* Note that the enum values are numbers (with January as `0`) so they can be
* easily compared to `date.getMonth()`.
*/
export declare enum Months {
JANUARY = 0,
FEBRUARY = 1,
MARCH = 2,
APRIL = 3,
MAY = 4,
JUNE = 5,
JULY = 6,
AUGUST = 7,
SEPTEMBER = 8,
OCTOBER = 9,
NOVEMBER = 10,
DECEMBER = 11
}