mirror of
https://github.com/urosran/cally.git
synced 2025-07-16 01:56:16 +00:00
20 lines
285 B
TypeScript
20 lines
285 B
TypeScript
export const modeMap = new Map([
|
|
[0, "day"],
|
|
[1, "week"],
|
|
[2, "month"],
|
|
]);
|
|
|
|
export const months = [
|
|
"January",
|
|
"February",
|
|
"March",
|
|
"April",
|
|
"May",
|
|
"June",
|
|
"July",
|
|
"August",
|
|
"September",
|
|
"October",
|
|
"November",
|
|
"December",
|
|
]; |