@webshop/root - v1.0.0
    Preparing search index...

    Type Alias Product

    Represents database response from product table. Can be a Game or Merchandise.

    type Product = {
        createdAt: Date;
        description: string;
        id: number;
        price: number;
        thumbnail: string;
        title: string;
        type: "Game" | "Merch";
    }
    Index

    Properties

    createdAt: Date
    description: string
    id: number
    price: number
    thumbnail: string
    title: string
    type: "Game" | "Merch"