@jupyterlab/git
Version:
A JupyterLab extension for version control using git
14 lines (13 loc) • 472 B
TypeScript
import { Dialog } from '@jupyterlab/apputils';
import { Widget } from '@lumino/widgets';
import { Git } from '../tokens';
/**
* A widget form containing a text block and a checkbox,
* can be used as a Dialog body.
*/
export declare class CheckboxForm extends Widget implements Dialog.IBodyWidget<Git.ICheckboxFormValue> {
constructor(textBody: string, checkboxLabel: string);
private createBody;
getValue(): Git.ICheckboxFormValue;
private _checkbox;
}