coldbydefault-portfolio
    Preparing search index...

    Interface Book

    ColdByDefault

    interface Book {
        amazonUrl?: string;
        author: string;
        description?: string;
        genre?: string[];
        goodreadsUrl?: string;
        id: string;
        imageUrl?: string;
        isbn?: string;
        pages?: number;
        publishedYear?: number;
        title: string;
        type: "book";
    }

    Hierarchy (View Summary)

    Index

    Properties

    amazonUrl?: string
    author: string
    description?: string
    genre?: string[]
    goodreadsUrl?: string
    id: string
    imageUrl?: string
    isbn?: string
    pages?: number
    publishedYear?: number
    title: string
    type: "book"