File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed
Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * @typedef JSMNEvent
3+ * @type {object }
4+ * @property {string } title - event title.
5+ * @property {Date } date - event date, be sure to include timezone info.
6+ * @property {string } link - link to meetup/event page.
7+ * @property {string } location - location of event.
8+ * @property {boolean } [hidden] - hide it from the site if true.
9+ */
10+
11+ /**
12+ * @type {JSMNEvent[] }
13+ */
114module . exports = [
215 {
3- title : 'November Meetup ' ,
4- date : new Date ( '2020-11-25T18:30 -06:00' ) ,
5- link : 'https://www.meetup.com/JavaScriptMN/' ,
16+ title : 'End of the Year Event: Pizza Night ' ,
17+ date : new Date ( '2020-12-09T18:00 -06:00' ) ,
18+ link : 'https://www.meetup.com/JavaScriptMN/events/hmzgxrybcpbhc/ ' ,
619 location : 'Virtual' ,
7- hidden : true ,
820 } ,
921 {
1022 title : 'October Event: Shalanah Dawson, Ryan Rampersad, Brian Mitchell' ,
You can’t perform that action at this time.
0 commit comments