export type Email = string;
export type Name = string;
export type Attendee = Email | [Email, Name?];
