ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface ProductDetails

    Basic product information structure. Used for simplified product representations.

    const details: ProductDetails = {
    name: "Sodium Chloride",
    description: "ACS grade sodium chloride",
    price: 19.99,
    quantity: 500
    };
    interface ProductDetails {
        name: string;
        description: string;
        price: number;
        quantity: number;
    }
    Index

    Properties

    name: string

    Display name of the product

    description: string

    Detailed product description

    price: number

    Current price of the product

    quantity: number

    Available quantity in stock