Rocky_Mountain_Vending/.pnpm-store/v10/files/9d/0d257aabd05b48d9ab7bbdd2ef9f98306f8f16aabee7df3fd85c77019c6ad3d10b29178abd43645fcc50951ae80165c35981136dac37981e363e682ab2a6dc
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

10 lines
412 B
Text

import * as rawWasm from '../../dist/wasm/browser/blake3_js';
/**
* Gets the webassembly module provided in provideWasm.
*/
export declare const getWasm: () => typeof rawWasm;
/**
* Sets the webassembly module used for the browser build. This indirection is
* needed to provide compatibility between the "browser" and "browser-async" modes.
*/
export declare const provideWasm: (w: typeof rawWasm) => void;