Rocky_Mountain_Vending/.pnpm-store/v10/files/25/ea2e00c67070607e4c5a6ecbe6b711818176952250749109ea8e48d918039061d3387621e89c8145108e6858da3fbc22f8fd0b63dbd1c2251b06f766f6d411
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

6 lines
229 B
Text

export interface SelfSignedCertificate {
key: string;
cert: string;
rootCA?: string;
}
export declare function createSelfSignedCertificate(host?: string, certDir?: string): Promise<SelfSignedCertificate | undefined>;