Rocky_Mountain_Vending/.pnpm-store/v10/files/f6/508003d261abb24c4ebcaff221e9679533bca0c7208026393b58aea289d4a8c709e887e0edbff68b626931c089d526eaf531c26375bbe612bcd0a85bf9eb42
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

4 lines
218 B
Text

import ora from 'next/dist/compiled/ora';
export default function createSpinner(text: string, options?: ora.Options, logFn?: (...data: any[]) => void): (ora.Ora & {
setText: (text: string) => void;
}) | undefined;