Rocky_Mountain_Vending/.pnpm-store/v10/files/11/8ff4d480cb837c16ef2f0613608cfd6d02b3214069ede3cd984783881136bf345bc1c5d121de5bb72977efd87e1899c1478f3190d8d47a61878d8d6a257e87
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

12 lines
591 B
Text

/**
* Creates a function that logs an error message that is deduped by the userland
* callsite.
* This requires no indirection between the call of this function and the userland
* callsite i.e. there's only a single library frame above this.
* Do not use on the Client where sourcemaps and ignore listing might be enabled.
* Only use that for warnings need a fix independent of the callstack.
*
* @param getMessage
* @returns
*/
export declare function createDedupedByCallsiteServerErrorLoggerDev<Args extends any[]>(getMessage: (...args: Args) => Error): (...args: Args) => void;