Rocky_Mountain_Vending/.pnpm-store/v10/files/6b/075d1e67302f483b7116c6d516f8cff72df873accb8769cedf9a9311f54d990ace2ed7ec7fe2709d2d9831824fd51aed84bfc4bac6f90689904e1dd5ccfc0f
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

40 lines
1.2 KiB
Text

/**
* A single Addr / Port pair that was accessed during the duration of the trace
*/
export interface Address {
addr: string;
port: string;
}
/**
* Tracked environment variable keys that were accessed during the duration of the trace
*/
export type EnvVars = Set<string | Symbol>;
/**
* Tracks the file system paths that were accessed during the duration of the trace
*/
export type FS = Set<string>;
/**
* Tracked Addr / Port pairs that were accessed during the duration of the trace
*/
export type Addresses = Array<Address>;
/**
* The serializable version of `TurborepoAccessTraceResult` - this is required to pass the `TurborepoAccessTraceResult`
* between workers where Sets are not serializable.
*/
export type SerializableTurborepoAccessTraceResult = Readonly<{
fs: Array<string>;
addresses: Addresses;
envVars: Array<string>;
}>;
/**
* The public version of `TurborepoAccessTraceResult` - this is what is written to the trace file
*/
export type PublicTurborepoAccessTraceResult = Readonly<{
filePaths: Array<string>;
network: boolean;
envVarKeys: Array<string>;
}>;
/**
* A function that restores the original state of a proxy
*/
export type RestoreOriginalFunction = () => void;