Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/cb69f37bde930f228750210bdefd8d52de02ed15df77bc0003ab9802c48c462cbd4cca9d85bfe92ce19c155fd90346ab2806bd63d14c314331fd59b9d4f8c6
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

26 lines
885 B
Text

/**
* This implementation is synchronous and only implements the parts of CBOR
* specification used by Smithy RPCv2 CBOR protocol.
*
* This cbor serde implementation is derived from AWS SDK for Go's implementation.
* @see https://github.com/aws/smithy-go/tree/main/encoding/cbor
*
* The cbor-x implementation was also instructional:
* @see https://github.com/kriszyp/cbor-x
*/
export declare const cbor: {
deserialize(payload: Uint8Array): any;
serialize(input: any): Uint8Array;
/**
* @public
* @param size - byte length to allocate.
*
* This may be used to garbage collect the CBOR
* shared encoding buffer space,
* e.g. resizeEncodingBuffer(0);
*
* This may also be used to pre-allocate more space for
* CBOR encoding, e.g. resizeEncodingBuffer(100_000_000);
*/
resizeEncodingBuffer(size: number): void;
};