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>
21 lines
516 B
Text
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;
|
|
}
|