From f8a4c754b954645de11cf9d9d53841a4ce5ccfc2 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sat, 5 Aug 2023 22:31:05 +0100 Subject: Defines Order type --- api/Order.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 api/Order.d.ts (limited to 'api') diff --git a/api/Order.d.ts b/api/Order.d.ts new file mode 100644 index 0000000..cf1ff81 --- /dev/null +++ b/api/Order.d.ts @@ -0,0 +1,7 @@ +type Order = { + productDescription: string; + shortDescription: string; + totalPrice: number; +}; + +export default Order; -- cgit v1.2.3