Rocky_Mountain_Vending/.pnpm-store/v10/files/a1/292bf5e5025632811b1aff4f839fc1e3516da702a9caf3331a5fe63089994145b44e727effdf51a642a95cb80d23774a1ffc48f765c259dad6a324804a30cb
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

27 lines
713 B
Text

import {
ChecksumConstructor,
Decoder,
Encoder,
HashConstructor,
InitializeHandlerOptions,
InitializeMiddleware,
Pluggable,
} from "@smithy/types";
interface PreviouslyResolved {
base64Encoder: Encoder;
md5: ChecksumConstructor | HashConstructor;
utf8Decoder: Decoder;
base64Decoder: Decoder;
}
export declare function ssecMiddleware(
options: PreviouslyResolved
): InitializeMiddleware<any, any>;
export declare const ssecMiddlewareOptions: InitializeHandlerOptions;
export declare const getSsecPlugin: (
config: PreviouslyResolved
) => Pluggable<any, any>;
export declare function isValidBase64EncodedSSECustomerKey(
str: string,
options: PreviouslyResolved
): boolean;
export {};