Rocky_Mountain_Vending/.pnpm-store/v10/files/56/fdcfffa2ee8c818481a49cf3f7b593c8e560485216707f73e8e7db467f8f6fa8bb3d7dc6fc70eb6ce8bab1fe6005165af01f7510c7a237ce82137c7699fa02
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

7 lines
185 B
Text

import type { AbortSignal as DeprecatedAbortSignal } from "./abort";
/**
* @public
*/
export interface AbortHandler {
(this: AbortSignal | DeprecatedAbortSignal, ev: any): any;
}