File size: 308 Bytes
38de65f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export interface Conference {
  title: string;
  year: number;
  id: string;
  full_name?: string;
  link: string;
  deadline: string;
  timezone: string;
  place: string;
  date: string;
  start?: string;
  end?: string;
  tags: string[];
  abstract_deadline?: string;
  note?: string;
  hindex?: number;
}