Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/781822fec57591a094fa7ec383a507295b6ebcb7ba068c94dc15b3af5859552daaa87e0bb8b6e928fa06e5a660e9171321d9ce4e4179e7a56bb5b4bb5a47d0
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

38 lines
1.3 KiB
Text

export type LogMethod = 'log' | 'info' | 'debug' | 'table' | 'error' | 'assert' | 'dir' | 'dirxml' | 'group' | 'groupCollapsed' | 'groupEnd' | 'trace' | 'warn';
export type ConsoleEntry<T> = {
kind: 'console';
method: LogMethod;
consoleMethodStack: string | null;
args: Array<{
kind: 'arg';
data: T;
} | {
kind: 'formatted-error-arg';
prefix: string;
stack: string;
}>;
};
export type ConsoleErrorEntry<T> = {
kind: 'any-logged-error';
method: 'error';
consoleErrorStack: string;
args: Array<{
kind: 'arg';
data: T;
isRejectionMessage?: boolean;
} | {
kind: 'formatted-error-arg';
prefix: string;
stack: string | null;
}>;
};
export type FormattedErrorEntry = {
kind: 'formatted-error';
prefix: string;
stack: string;
method: 'error';
};
export type ClientLogEntry = ConsoleEntry<unknown> | ConsoleErrorEntry<unknown> | FormattedErrorEntry;
export type ServerLogEntry = ConsoleEntry<string> | ConsoleErrorEntry<string> | FormattedErrorEntry;
export declare const UNDEFINED_MARKER = "__next_tagged_undefined";
export declare function patchConsoleMethod<T extends keyof Console>(methodName: T, wrapper: (methodName: T, ...args: Console[T] extends (...args: infer P) => any ? P : never[]) => void): () => void;