Rocky_Mountain_Vending/.pnpm-store/v10/files/51/931a29b722d4a6039a587d66a21521000147f02e3077feafa5c034ab5c63e88bcf30fc7ba1541dd697b2e8c55fd8000b20eb00fa6ec460f0ccd3d104171ba2
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

24 lines
1.1 KiB
Text

import { SdkError } from "@smithy/types";
export declare const isRetryableByTrait: (error: SdkError) => boolean;
/**
* @deprecated use isClockSkewCorrectedError. This is only used in deprecated code.
*/
export declare const isClockSkewError: (error: SdkError) => boolean;
/**
* @returns whether the error resulted in a systemClockOffset aka clock skew correction.
*/
export declare const isClockSkewCorrectedError: (error: SdkError) => true | undefined;
/**
*
* @internal
*/
export declare const isBrowserNetworkError: (error: SdkError) => boolean;
export declare const isThrottlingError: (error: SdkError) => boolean;
/**
* Though NODEJS_TIMEOUT_ERROR_CODES are platform specific, they are
* included here because there is an error scenario with unknown root
* cause where the NodeHttpHandler does not decorate the Error with
* the name "TimeoutError" to be checked by the TRANSIENT_ERROR_CODES condition.
*/
export declare const isTransientError: (error: SdkError, depth?: number) => boolean;
export declare const isServerError: (error: SdkError) => boolean;