Type Alias Product1

Product1: { id: string; name: string; price: number } & (
    { id: string; name: string; price: number }
    | null
)

Ecom single product for view action

Type declaration

  • id: string

    Product ID

  • name: string

    Product name

  • price: number

    Product price

  • { id: string; name: string; price: number }
    • id: string

      Product ID

    • name: string

      Product name

    • price: number

      Product price

  • null