fix: create custom pricing table

This commit is contained in:
Mythie
2023-10-13 23:33:40 +11:00
parent 01e6367b72
commit 4d5275f915
10 changed files with 287 additions and 43 deletions

View File

@ -0,0 +1,7 @@
declare module 'stripe' {
namespace Stripe {
interface Product {
features?: Array<{ name: string }>;
}
}
}