Rocky_Mountain_Vending/.pnpm-store/v10/files/50/0bc1d37deb91b62d015191da7290e8ec71a13b014b2d6c7e5334928c75646ecaf04b120441402141797b2d3d1bc67e087a593c27919f8833c327271a00453e
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

11 lines
No EOL
265 B
Text

import type { Stacktrace } from './stacktrace';
/** JSDoc */
export interface Thread {
id?: number | string;
name?: string;
main?: boolean;
stacktrace?: Stacktrace;
crashed?: boolean;
current?: boolean;
}
//# sourceMappingURL=thread.d.ts.map