File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,12 @@ export interface Community {
50
50
type: ' workshop' | ' conference' | ' meetup' | ' other' ;
51
51
location: string | null ;
52
52
url: string | null ;
53
+ mediaChannel: MediaChannel | null ;
53
54
logo: string | null ;
54
55
twitter: string | null ;
55
56
linkedin: string | null ;
56
57
callForPapers: string | null ;
57
- events: Event []; // default to []
58
+ events: Event [];
58
59
}
59
60
```
60
61
@@ -67,17 +68,17 @@ The item should match this format:
67
68
68
69
``` typescript
69
70
export interface Event {
70
- name: string | null ;
71
+ name? : string ;
71
72
type: ' workshop' | ' conference' | ' meetup' | ' other' ;
72
- location: string | null ;
73
- url: string | null ;
73
+ location? : string | null ;
74
74
date: string ;
75
75
language: string ;
76
76
isFree: boolean ;
77
77
isRemote: boolean ;
78
78
isOnsite: boolean ;
79
- callForPapers: string | null ;
80
- callForPapersDueDate: string | null ;
79
+ callForPapers? : string | null ;
80
+ callForPapersDueDate? : string | null ;
81
+ url? : string ;
81
82
}
82
83
```
83
84
You can’t perform that action at this time.
0 commit comments