Rocky_Mountain_Vending/.pnpm-store/v10/files/b5/fec6f287175dd5f183fcdcf8aa040199812e821f79ca753deb3409b5c36a3c3f0f897dfbafe1ab693df718baaaa6687d849508a8b4a1f7660e7425083ad1b4
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

33 lines
1.1 KiB
Text

import { SerdeContext } from "@smithy/core/protocols";
import { Codec, Schema, ShapeDeserializer, ShapeSerializer } from "@smithy/types";
/**
* @public
*/
export declare class CborCodec extends SerdeContext implements Codec<Uint8Array, Uint8Array> {
createSerializer(): CborShapeSerializer;
createDeserializer(): CborShapeDeserializer;
}
/**
* @public
*/
export declare class CborShapeSerializer extends SerdeContext implements ShapeSerializer {
private value;
write(schema: Schema, value: unknown): void;
/**
* Recursive serializer transform that copies and prepares the user input object
* for CBOR serialization.
*/
serialize(schema: Schema, source: unknown): any;
flush(): Uint8Array;
}
/**
* @public
*/
export declare class CborShapeDeserializer extends SerdeContext implements ShapeDeserializer {
read(schema: Schema, bytes: Uint8Array): any;
/**
* Public because it's called by the protocol implementation to deserialize errors.
* @internal
*/
readValue(_schema: Schema, value: any): any;
}