Rocky_Mountain_Vending/.pnpm-store/v10/files/e1/44124bbca4926921c74060be06380d532666c37412f817b09390bb18fcc8a6070d7f9540d0e1d6f53c3ec22baa32e32be885c568aa8dac26ab6962a217c723
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

20 lines
850 B
Text

import { TurborepoAccessTraceResult } from './result';
/**
* Trace access to the filesystem (TODO), environment variables, and TCP addresses and
* merge the results into the parent `TurborepoAccessTraceResult`.
*
* @param f the function to trace
* @param parent the `TurborepoAccessTraceResult` to merge the results into
* @returns the result of the function
*/
export declare function turborepoTraceAccess<T>(f: () => T | Promise<T>, parent: TurborepoAccessTraceResult): Promise<T> | T;
/**
* Write the access trace to the trace file.
*
* @param distDir the directory to write the trace file to
* @param traces an array of traces to merge and write to the trace file
*/
export declare function writeTurborepoAccessTraceResult({ distDir, traces, }: {
distDir: string;
traces: Array<TurborepoAccessTraceResult>;
}): Promise<void>;