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