Rocky_Mountain_Vending/.pnpm-store/v10/files/b7/95e36d7fae725c56d3fd30a3f1cdc4b55456a1ac9eb74729d5aa8ea39566c68c74618b4ec91e6709ef1f3774d11cb387a76e67e1f0099c61ace7ffa9b5dde2
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

19 lines
825 B
Text

import type { OriginalStackFrameResponse, StackFrame } from '../server/shared';
export type { StackFrame };
interface ResolvedOriginalStackFrame extends OriginalStackFrameResponse {
error: false;
reason: null;
external: boolean;
ignored: boolean;
sourceStackFrame: StackFrame;
}
interface RejectedOriginalStackFrame extends OriginalStackFrameResponse {
error: true;
reason: string;
external: boolean;
ignored: boolean;
sourceStackFrame: StackFrame;
}
export type OriginalStackFrame = ResolvedOriginalStackFrame | RejectedOriginalStackFrame;
export declare function getOriginalStackFrames(frames: readonly StackFrame[], type: 'server' | 'edge-server' | null, isAppDir: boolean): Promise<readonly OriginalStackFrame[]>;
export declare function getFrameSource(frame: StackFrame): string;