Rocky_Mountain_Vending/.pnpm-store/v10/files/71/df1f87d5a222fd9c74d3a2d02aa66aef5a8fb211f9dd540f55a0b001c6403a66e9104b91ea5847feefbb3500b8c2571055863ca6e903604608f5297666a48b
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

17 lines
504 B
Text

import { CborValueType, Float32, Uint8, Uint32 } from "./cbor-types";
/**
* @internal
* @param bytes - to be set as the decode source.
*
* Sets the decode bytearray source and its data view.
*/
export declare function setPayload(bytes: Uint8Array): void;
/**
* @internal
* Decodes the data between the two indices.
*/
export declare function decode(at: Uint32, to: Uint32): CborValueType;
/**
* @internal
*/
export declare function bytesToFloat16(a: Uint8, b: Uint8): Float32;