Comic: {
    comic_id: string;
    cover: number;
    cover_price: number;
    distribution: ComicDistribution | string | null;
    format: ComicFormat | string;
    full_title: string;
    isbn: string;
    issue: number;
    notes: string;
    printing: number;
    release_date: Date;
    series_id: string;
    type: ComicType | string;
    upc: string;
}

A table representing a comic in my collection.

Type declaration

  • comic_id: string

    The ID of the comic.

  • cover: number

    The numbered cover.

  • cover_price: number

    The cover price of the comic.

  • distribution: ComicDistribution | string | null

    The method used to distribute this comic.

  • format: ComicFormat | string

    The media format of the comic.

  • full_title: string

    The title of a trade paperback or hardcover.

  • isbn: string

    The international standard book number of the comic.

  • issue: number

    The issue number of the comic.

  • notes: string

    Any extra information about the comic.

  • printing: number

    Which number printing the comic is from.

  • release_date: Date

    The original release date of the comic.

  • series_id: string

    The ID of the comic series.

  • type: ComicType | string

    The type of comic.

  • upc: string

    The universal product code of the comic.