NeahNew/node_modules/next/dist/client/components/react-dev-overlay/utils/parse-component-stack.d.ts
2025-05-03 14:17:46 +02:00

9 lines
249 B
TypeScript

export type ComponentStackFrame = {
canOpenInEditor: boolean;
component: string;
file?: string;
lineNumber?: number;
column?: number;
};
export declare function parseComponentStack(componentStack: string): ComponentStackFrame[];