12 lines
287 B
Plaintext
12 lines
287 B
Plaintext
import React from 'react';
|
|
type EditorLinkProps = {
|
|
file: string;
|
|
isSourceFile: boolean;
|
|
location?: {
|
|
line: number;
|
|
column: number;
|
|
};
|
|
};
|
|
export declare function EditorLink({ file, isSourceFile, location }: EditorLinkProps): React.JSX.Element;
|
|
export {};
|