Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/f70f7b947a16d455b7c0f1b064e15949528f629f23dbefe1612bf5f2d0c922e64d0219b3e895c00c6f30eba1a6c101c4e23001b12cee0628f8bfc32cab5921
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

15 lines
269 B
Text

import { Logger } from "@smithy/types";
export { Logger } from "@smithy/types";
export type LogLevel =
| "all"
| "trace"
| "debug"
| "log"
| "info"
| "warn"
| "error"
| "off";
export interface LoggerOptions {
logger?: Logger;
logLevel?: LogLevel;
}