7 lines
274 B
Plaintext
7 lines
274 B
Plaintext
import React from 'react';
|
|
import type { StackFramesGroup } from '../../helpers/group-stack-frames-by-framework';
|
|
export declare function GroupedStackFrames({ groupedStackFrames, all, }: {
|
|
groupedStackFrames: StackFramesGroup[];
|
|
all: boolean;
|
|
}): React.JSX.Element;
|