Event: {
    description: string;
    end_date: Date | null;
    event_id: string;
    name: string;
    publisher: string;
    start_date: Date;
}

Represents comic event.

Type declaration

  • description: string

    The description of the event.

  • end_date: Date | null

    The date the event ends, usually the release date of the last comic book for the event.

  • event_id: string

    The unique ID representing an event.

  • name: string

    The name of the event.

  • publisher: string

    The company publishing the event.

  • start_date: Date

    THe date the event begins, usually the release date of the first comic book for this event.