mirror of
https://github.com/documenso/documenso
synced 2026-04-21 21:37:18 +00:00
7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
declare module 'stripe' {
|
|
namespace Stripe {
|
|
interface Product {
|
|
features?: Array<{ name: string }>;
|
|
}
|
|
}
|
|
}
|