Rocky_Mountain_Vending/.pnpm-store/v10/files/aa/c14f3732d912ca6d7a0ecc525ac229036884233dff02d87720a0d917822c8c93205f1a055c0d320737f39d846cb5e19eb7a456c27532411243715d093a21bd
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

114 lines
3.4 KiB
Text

/**
* C pointer to type `CType`. Pointer types are used internally for FFI, but
* are not intended for external use.
*
* @unstable This type is considered private and may change.
*/
type Pointer<CType extends string> = number & {
ctype: CType;
};
type Brand<T, B> = T & {
brand: B;
};
/**
* `JSRuntime*`.
*/
export type JSRuntimePointer = Pointer<"JSRuntime">;
/**
* `JSContext*`.
*/
export type JSContextPointer = Pointer<"JSContext">;
/**
* `JSContext**`. Used internally for execute pending jobs.
*/
export type JSContextPointerPointer = Pointer<"JSContext">;
/**
* `JSModuleDef*`.
*/
export type JSModuleDefPointer = Pointer<"JSModuleDef">;
/**
* `JSValue*`.
* See [[JSValue]].
*/
export type JSValuePointer = Pointer<"JSValue">;
/**
* `JSValueConst*
* See [[JSValueConst]] and [[StaticJSValue]].
*/
export type JSValueConstPointer = Pointer<"JSValueConst">;
/**
* Used internally for Javascript-to-C function calls.
*/
export type JSValuePointerPointer = Pointer<"JSValue[]">;
/**
* Used internally for Javascript-to-C function calls.
*/
export type JSValueConstPointerPointer = Pointer<"JSValueConst[]">;
/**
* Used internally for C-to-Javascript function calls.
*/
/**
* Used internally for C-to-Javascript function calls.
*/
export type QTS_C_To_HostCallbackFuncPointer = Pointer<"C_To_HostCallbackFunc">;
/**
* Used internally for C-to-Javascript interrupt handlers.
*/
export type QTS_C_To_HostInterruptFuncPointer = Pointer<"C_To_HostInterruptFunc">;
/**
* Used internally for C-to-Javascript module loading.
*/
export type QTS_C_To_HostLoadModuleFuncPointer = Pointer<"C_To_HostLoadModuleFunc">;
/**
* Used internally for Javascript-to-C calls that may contain strings too large
* for the Emscripten stack.
*/
export type BorrowedHeapCharPointer = Pointer<"const char" | "char" | "js const char">;
/**
* Used internally for Javascript-to-C calls that may contain strings too large
* for the Emscripten stack.
*/
export type OwnedHeapCharPointer = Pointer<"char">;
/**
* Used internally for Javascript-to-C calls that may contain strings too large
* for the Emscripten stack.
*/
export type JSBorrowedCharPointer = Pointer<"js const char">;
/**
* Opaque pointer that was allocated by js_malloc.
*/
export type JSVoidPointer = Pointer<any>;
/**
* @private
*/
export type EvalFlags = Brand<number, "EvalFlags">;
/**
* @private
*/
export type EvalDetectModule = Brand<number, "EvalDetectModule">;
export declare function assertSync<Args extends any[], R>(fn: (...args: Args) => R): (...args: Args) => R;
/** Bitfield options for JS_Eval() C function. */
export declare const EvalFlags: {
/** global code (default) */
JS_EVAL_TYPE_GLOBAL: number;
/** module code */
JS_EVAL_TYPE_MODULE: number;
/** direct call (internal use) */
JS_EVAL_TYPE_DIRECT: number;
/** indirect call (internal use) */
JS_EVAL_TYPE_INDIRECT: number;
JS_EVAL_TYPE_MASK: number;
/** force 'strict' mode */
JS_EVAL_FLAG_STRICT: number;
/** force 'strip' mode */
JS_EVAL_FLAG_STRIP: number;
/**
* compile but do not run. The result is an object with a
* JS_TAG_FUNCTION_BYTECODE or JS_TAG_MODULE tag. It can be executed
* with JS_EvalFunction().
*/
JS_EVAL_FLAG_COMPILE_ONLY: number;
/** don't include the stack frames before this eval in the Error() backtraces */
JS_EVAL_FLAG_BACKTRACE_BARRIER: number;
};
export {};