bpms_site/.svn/pristine/a2/a28d5b5096d0557f8113bf0c1836bb5610462ef8.svn-base
2025-11-02 16:38:49 +03:30

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 {};