summaryrefslogtreecommitdiff
path: root/api-src/_Order.d.ts
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-08 08:14:29 +0100
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2023-08-08 08:18:27 +0100
commitc3950f3de28e7ac1e677f4006521ffbed5db4ee0 (patch)
treec5f69297c6f289ec46f95bcd7df65001474eee47 /api-src/_Order.d.ts
parent4a5bd8bf5e3c6017794d7c5c7eb4f2794a902245 (diff)
Renames createPaypalOrder -> create-paypal-order
Diffstat (limited to 'api-src/_Order.d.ts')
-rw-r--r--api-src/_Order.d.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/api-src/_Order.d.ts b/api-src/_Order.d.ts
new file mode 100644
index 0000000..cf1ff81
--- /dev/null
+++ b/api-src/_Order.d.ts
@@ -0,0 +1,7 @@
+type Order = {
+ productDescription: string;
+ shortDescription: string;
+ totalPrice: number;
+};
+
+export default Order;