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>
14 lines
328 B
Text
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>;
|
|
}
|