Rocky_Mountain_Vending/.pnpm-store/v10/files/07/397ac5c14e57979d00716aecf013c35396dc69a1702fdd5a44a0ce0f696c586f6d77328272d701ddf1141fd3eb65976a7bdfafb3a2a1e0201ca136d34aac65
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

21 lines
516 B
Text

import { AbortHandler, AbortSignal as DeprecatedAbortSignal } from "@smithy/types";
/**
* @public
*/
export { AbortHandler, DeprecatedAbortSignal as IAbortSignal };
/**
* @public
*/
export declare class AbortSignal implements DeprecatedAbortSignal {
onabort: AbortHandler | null;
private _aborted;
constructor();
/*
* Whether the associated operation has already been cancelled.
*/
readonly aborted: boolean;
/**
* @internal
*/
abort(): void;
}