Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/ef693fb7c29391d0010909427baa737eb6517b3bf8cef63f059bd330860d60e211c8b38e33fa764fa36834bd183ccf98369ab30014647ff1228518fc44fa84
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

25 lines
1 KiB
Text

import type { StackFrame } from '../../server/lib/parse-stack';
export type { StackFrame };
export interface IgnorableStackFrame extends StackFrame {
ignored: boolean;
}
export interface OriginalStackFramesRequest {
frames: readonly StackFrame[];
isServer: boolean;
isEdgeServer: boolean;
isAppDirectory: boolean;
}
export type OriginalStackFramesResponse = OriginalStackFrameResponseResult[];
export type OriginalStackFrameResponseResult = PromiseSettledResult<OriginalStackFrameResponse>;
export interface OriginalStackFrameResponse {
originalStackFrame: (StackFrame & {
ignored: boolean;
}) | null;
originalCodeFrame: string | null;
}
export declare function ignoreListAnonymousStackFramesIfSandwiched(responses: OriginalStackFramesResponse): void;
/**
* It looks up the code frame of the traced source.
* @note It ignores Next.js/React internals, as these can often be huge bundled files.
*/
export declare function getOriginalCodeFrame(frame: IgnorableStackFrame, source: string | null, colors?: boolean): string | null;