Rocky_Mountain_Vending/.pnpm-store/v10/files/43/5ec76133b568d4b96c924fb6a8f3a24c3a075f15c28e07de4f557eb1827fae6dbf2781f74dbd624bffa57d6a16eb3446c4d8be13267fbc1fc9a89ff199efa1
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

13 lines
360 B
Text

/**
* @public
*
* Represents a logger object that is available in HandlerExecutionContext
* throughout the middleware stack.
*/
export interface Logger {
trace?: (...content: any[]) => void;
debug: (...content: any[]) => void;
info: (...content: any[]) => void;
warn: (...content: any[]) => void;
error: (...content: any[]) => void;
}