mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
declare module 'stripe' {
|
|
namespace Stripe {
|
|
interface Product {
|
|
features?: Array<{ name: string }>;
|
|
}
|
|
}
|
|
}
|