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>
17 lines
504 B
Text
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;
|