diff options
Diffstat (limited to 'api')
| -rw-r--r-- | api/Order.d.ts | 7 |
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; |
