Rocky_Mountain_Vending/.pnpm-store/v10/files/2d/f450d56d2be490dd3abea553cb306091f74340dfff9969e149cb60901cf54dc94c3bf5e1061b8b380bbf5d5cb2fd017ba309fb73252ca32aad1ea0e72b38ef
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

30 lines
685 B
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* [Tax codes](https://stripe.com/docs/tax/tax-categories) classify goods and services for tax purposes.
*/
interface TaxCode {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'tax_code';
/**
* A detailed description of which types of products the tax code represents.
*/
description: string;
/**
* A short name for the tax code.
*/
name: string;
}
}
}