summaryrefslogtreecommitdiff
path: root/api/_Order.d.ts
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 09:39:41 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-12 09:41:58 +0100
commit6549313a54e7fede18cfa170df82c29f511d76d7 (patch)
tree2dc148824adfa08dd7b32cf2ca2179e6e3e23dfc /api/_Order.d.ts
parentfae665188dfd2c333c6fbba43a8d3c776b285d27 (diff)
No more API build step
Diffstat (limited to 'api/_Order.d.ts')
-rw-r--r--api/_Order.d.ts7
1 files changed, 7 insertions, 0 deletions
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;