UNPKG

@nacelle/react-hooks

Version:

Custom convenience hooks for use when building apps with Nacelle

10 lines (9 loc) 264 B
import { NacelleProduct, ProductVariant } from '@nacelle/types'; export interface CartItem { product: NacelleProduct; variant: ProductVariant; quantity: number; } export interface AnyObject { [key: string]: AnyObject | string | unknown; }