17 lines
237 B
TypeScript
17 lines
237 B
TypeScript
|
/**
|
||
|
* A dictionary for all of the days of the week
|
||
|
*/
|
||
|
const dayDictionary: Array<string> = [
|
||
|
"Sunday",
|
||
|
"Monday",
|
||
|
"Tuesday",
|
||
|
"Wednesday",
|
||
|
"Thursday",
|
||
|
"Friday",
|
||
|
"Saturday",
|
||
|
];
|
||
|
|
||
|
|
||
|
export {
|
||
|
dayDictionary
|
||
|
};
|