Rocky_Mountain_Vending/.pnpm-store/v10/files/b1/67a3ad72d5363a4c879583d7638cc434a9b7e3d94c8ba13981d7237e7fc508b09b0b529105908ff7344426ed7b257b79152f1bd948886fad6a4153d58216d8
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

12 lines
446 B
Text

import type { Project } from '../../../build/swc/types';
/**
* Subscribes to compilation events for `project` and prints them using the
* `Log` library.
*
* The `signal` argument is partially implemented. The abort may not happen until the next
* compilation event arrives.
*/
export declare function backgroundLogCompilationEvents(project: Project, { eventTypes, signal }?: {
eventTypes?: string[];
signal?: AbortSignal;
}): void;