Rocky_Mountain_Vending/.pnpm-store/v10/files/68/3acc267b59f3a4e9db7dd87f66152a7587420998c7a8d8dc28c8ada827ef838b660d5300331ce830c57d0809fef52698184e204621fbc98a29ae97f3aecd4f
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

14 lines
328 B
Text

// Polyfills for the explicit resource management types added in TypeScript 5.2.
interface SymbolConstructor {
readonly dispose: unique symbol;
readonly asyncDispose: unique symbol;
}
interface Disposable {
[Symbol.dispose](): void;
}
interface AsyncDisposable {
[Symbol.asyncDispose](): PromiseLike<void>;
}