Rocky_Mountain_Vending/.pnpm-store/v10/files/56/dab95620a80fb1576d930d22806057c8a2ece88ebe330d4f7d6769b261e2f47b64c96928a5494079dfbf761e40282ecd958a5b4ee341298a8a9b361c59c37c
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

30 lines
No EOL
1 KiB
Text

/// <reference types="node" />
import { readdir, readFile } from 'node:fs';
import type { AppContext, DeviceContext } from '@sentry/core';
export declare const readFileAsync: typeof readFile.__promisify__;
export declare const readDirAsync: typeof readdir.__promisify__;
interface DeviceContextOptions {
cpu?: boolean;
memory?: boolean;
}
interface ContextOptions {
app?: boolean;
os?: boolean;
device?: DeviceContextOptions | boolean;
culture?: boolean;
cloudResource?: boolean;
}
/**
* Capture context about the environment and the device that the client is running on, to events.
*/
export declare const nodeContextIntegration: (options?: ContextOptions | undefined) => import("@sentry/core").Integration;
/**
* Get app context information from process
*/
export declare function getAppContext(): AppContext;
/**
* Gets device information from os
*/
export declare function getDeviceContext(deviceOpt: DeviceContextOptions | true): DeviceContext;
export {};
//# sourceMappingURL=context.d.ts.map