Rocky_Mountain_Vending/.pnpm-store/v10/files/f4/cfdee409c02f52073268a9b02e89c92ccc34825c226430cef2e51c4aa21c221cbde00e682b92d7c18f54c1436af88248c5d82e66f682f8bbd11f144d11563c
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

26 lines
817 B
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
interface BalanceRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class BalanceResource {
/**
* Retrieves the current account balance, based on the authentication that was used to make the request.
* For a sample request, see [Accounting for negative balances](https://stripe.com/docs/connect/account-balances#accounting-for-negative-balances).
*/
retrieve(
params?: BalanceRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Balance>>;
retrieve(
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Balance>>;
}
}
}