8 lines
242 B
Plaintext
8 lines
242 B
Plaintext
import * as React from 'react';
|
|
import { StackFrame } from 'next/dist/compiled/stacktrace-parser';
|
|
export type CodeFrameProps = {
|
|
stackFrame: StackFrame;
|
|
codeFrame: string;
|
|
};
|
|
export declare const CodeFrame: React.FC<CodeFrameProps>;
|