Rocky_Mountain_Vending/.pnpm-store/v10/files/4d/22ed7a07c0354f4f73960a7642bce5a6837a09b134f17b37a0de3269f01eced18def6aa83565a28a8016bf3a07e80b5434ad7762358367e543d8ad2ecba518
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

16 lines
517 B
Text

import { AbortController as DeprecatedAbortController } from "@smithy/types";
import { AbortSignal } from "./AbortSignal";
/**
* @public
*/
export { DeprecatedAbortController as IAbortController };
/**
* @deprecated This implementation was added as Node.js didn't support AbortController prior to 15.x
* Use native implementation in browsers or Node.js \>=15.4.0.
*
* @public
*/
export declare class AbortController implements DeprecatedAbortController {
readonly signal: AbortSignal;
abort(): void;
}