Neah/node_modules/next/dist/client/components/react-dev-overlay/utils/parse-component-stack.d.ts
2025-04-24 17:19:14 +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[];