@jupyterlab/debugger
Version:
JupyterLab - Debugger Extension
19 lines (18 loc) • 478 B
TypeScript
import { ReactWidget } from '@jupyterlab/ui-components';
import { IDebugger } from '../../tokens';
/**
* The body for a Callstack Panel.
*/
export declare class CallstackBody extends ReactWidget {
/**
* Instantiate a new Body for the Callstack Panel.
*
* @param model The model for the callstack.
*/
constructor(model: IDebugger.Model.ICallstack);
/**
* Render the FramesComponent.
*/
render(): JSX.Element;
private _model;
}