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

    Interface ProductRow

    Represents a row in the product table. Used for type-safe row operations in TanStack Table.

    const productRow: ProductRow = {
    row: {
    original: {
    title: "Sodium Chloride",
    price: 19.99,
    quantity: 500
    }
    }
    };
    interface ProductRow {
        row: Row<Product>;
    }
    Index

    Properties

    Properties

    row: Row<Product>

    Table row containing product data