@jupyterlab/debugger
Version:
JupyterLab - Debugger Extension
13 lines (12 loc) • 412 B
TypeScript
import { TranslationBundle } from '@jupyterlab/translation';
import { IDebugger } from '../../tokens';
/**
* A React component to display the path to a source.
*
* @param {object} props The component props.
* @param props.model The model for the sources.
*/
export declare const SourcePathComponent: ({ model, trans }: {
model: IDebugger.Model.ISources;
trans: TranslationBundle;
}) => JSX.Element;