Rocky_Mountain_Vending/.pnpm-store/v10/files/f1/49790bd97cea8d616fcca0d2408119180a77127884a71f95c064a326fbbf0749ac0e1d4fa95a0b22f909b62adb15c0ecb786e0c2bc70f575a5785b2d023201
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
823 B
Text

export { EndpointBearer, StreamCollector, SerdeContext, ResponseDeserializer, RequestSerializer, SdkStreamMixin, SdkStream, WithSdkStreamMixin, SdkStreamMixinInjector, SdkStreamSerdeContext, } from "@smithy/types";
/**
* @public
*
* Declare DOM interfaces in case dom.d.ts is not added to the tsconfig lib, causing
* interfaces to not be defined. For developers with dom.d.ts added, the interfaces will
* be merged correctly.
*
* This is also required for any clients with streaming interfaces where the corresponding
* types are also referred. The type is only declared here once since this `@aws-sdk/types`
* is depended by all `@aws-sdk` packages.
*/
declare global {
/**
* @public
*/
export interface ReadableStream {
}
/**
* @public
*/
export interface Blob {
}
}