Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/192fea70e64c4509e7ca0118e2d707fce9f87884689f849fe2106854d3d59b425417fb2889bb88479ae4f793db11ddf99f64ca262c49954e40d9454516da59
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
492 B
Text

import type { 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;