Rocky_Mountain_Vending/.pnpm-store/v10/files/05/d3184e75a169c27829c011834baf800cb93480561e3e2e5df5af7dd38215044663455a64e633d4274e8b80df9996260588a477fc1399adf3246c03000c5b04
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

23 lines
640 B
Text

/**
* Options passed to hash functions.
*/
export interface IBaseHashOptions {
/**
* Length of the desired hash, in bytes. Note that when encoding the output
* as a string, this is *not* the string length.
*/
length?: number;
}
/**
* Default hash length, in bytes, unless otherwise specified.
*/
export declare const defaultHashLength = 32;
/**
* A type that can be hashed.
*/
export declare type BaseHashInput = Uint8Array | ArrayBuffer | SharedArrayBuffer | ArrayLike<number>;
/**
* Converts the input to an Uint8Array.
* @hidden
*/
export declare const inputToArray: (input: BaseHashInput) => Uint8Array;