Rocky_Mountain_Vending/.pnpm-store/v10/files/6a/17847876cd3c5c4124447f1aa9687cd4c3aec09b1c917ee5735e8e37dd405bca927068da9ceff7e0944ae9a926eda3dccf364b6c5e75cf50d7f4e679822c84
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

11 lines
No EOL
528 B
Text

/// <reference types="node" />
import type { Context } from 'vm';
import type { QuickJSWASMModule } from '@tootallnate/quickjs-emscripten';
import type { DegeneratorNames } from './degenerator';
export interface CompileOptions {
names?: DegeneratorNames;
filename?: string;
sandbox?: Context;
}
export declare function compile<R = unknown, A extends unknown[] = []>(qjs: QuickJSWASMModule, code: string, returnName: string, options?: CompileOptions): (...args: A) => Promise<R>;
//# sourceMappingURL=compile.d.ts.map