@jupyterlab/debugger
Version:
JupyterLab - Debugger Extension
17 lines (16 loc) • 477 B
TypeScript
import { IDebugger } from '../../tokens';
import { TranslationBundle } from '@jupyterlab/translation';
/**
* The class name added to the filebrowser crumbs node.
*/
export interface IFilterBoxProps {
model: IDebugger.Model.IKernelSources;
/**
* The language bundle.
*/
trans: TranslationBundle;
}
/**
* A widget which hosts a input textbox to filter on file names.
*/
export declare const KernelSourcesFilter: (props: IFilterBoxProps) => JSX.Element;