8 lines
219 B
Plaintext
8 lines
219 B
Plaintext
export type ComponentStackFrame = {
|
|
component: string;
|
|
file?: string;
|
|
lineNumber?: number;
|
|
column?: number;
|
|
};
|
|
export declare function parseComponentStack(componentStack: string): ComponentStackFrame[];
|