Rocky_Mountain_Vending/.pnpm-store/v10/files/da/bc7c61d6dd3a0761d88b5120a601648a2ae4bccffcc210212c7610b4d1e3f29dcfac6f415f2d0b6837cf82d71e44144cf8bf0af69f22e94b60cf532947345e
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

14 lines
353 B
Text

type ModeWriter = (doc: Doc, modes: {
execution: "sync" | "async";
}) => void;
export declare class Doc {
args: string[];
content: string[];
indent: number;
constructor(args?: string[]);
indented(fn: (doc: Doc) => void): void;
write(fn: ModeWriter): void;
write(line: string): void;
compile(): Function;
}
export {};