summaryrefslogtreecommitdiff
path: root/api/Order.d.ts
blob: cf1ff8159c74b9fb32c79abc56410b9d972aef30 (plain)
1
2
3
4
5
6
7
type Order = {
  productDescription: string;
  shortDescription: string;
  totalPrice: number;
};

export default Order;