@chatui/core
Version:
The React library for Chatbot UI
11 lines (10 loc) • 327 B
TypeScript
import React from 'react';
import { GoodsProps } from '../Goods';
export type OrderObjectProps = {
className?: string;
title?: string;
list: GoodsProps[];
count?: number;
onClick?: React.MouseEventHandler<HTMLDivElement>;
};
export declare const OrderObject: (props: OrderObjectProps) => React.JSX.Element;