Rocky_Mountain_Vending/.pnpm-store/v10/files/72/cada831be2e6335ae02fcea443f2a6577332447223dec36e934d6a98b0abdc696537e1fd4776b0b274763a511bca460090e78063cd87e5a68a28e051d806d0
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

32 lines
812 B
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* The ReserveTransaction object.
*/
interface ReserveTransaction {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'reserve_transaction';
amount: number;
/**
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
*/
currency: string;
/**
* An arbitrary string attached to the object. Often useful for displaying to users.
*/
description: string | null;
}
}
}