refactor: product page data fetching

This commit is contained in:
OllyNicholass
2024-10-15 23:36:24 +01:00
parent ec684f9074
commit 43bd4e8026
3 changed files with 24 additions and 13 deletions
+7
View File
@@ -0,0 +1,7 @@
import Stripe from 'stripe';
export type ProductInfo = {
product: Stripe.Product;
price: Stripe.Price;
isSubscription: boolean;
};