File size: 888 Bytes
0fc7363
 
 
 
 
 
 
38de65f
 
08d905b
38de65f
08d905b
 
0fc7363
 
08d905b
38de65f
08d905b
 
 
 
 
 
0fc7363
38de65f
 
08d905b
38de65f
000c282
 
 
08d905b
 
 
 
 
 
38de65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
export interface Deadline {
  type: string;
  label: string;
  date: string;
  timezone?: string;
}

export interface Conference {
  id: string;
  title: string;
  full_name?: string;
  year: number;
  link?: string;
  deadline: string; // Keep for backward compatibility
  deadlines?: Deadline[]; // New multiple deadlines support
  timezone?: string;
  date: string;
  place?: string;
  city?: string;
  country?: string;
  venue?: string;
  tags?: string[];
  note?: string;
  abstract_deadline?: string; // Keep for backward compatibility
  start?: string;
  end?: string;
  rankings?: string;
  hindex?: number;
  rebuttal_period_start?: string;
  rebuttal_period_end?: string;
  final_decision_date?: string;
  review_release_date?: string;
  submission_deadline?: string;
  timezone_submission?: string;
  commitment_deadline?: string;
  paperslink?: string;
  pwclink?: string;
}