@jupyterlab/git
Version:
A JupyterLab extension for version control using git
22 lines (21 loc) • 552 B
TypeScript
import { TranslationBundle } from '@jupyterlab/translation';
import { Widget } from '@lumino/widgets';
/**
* The UI for the form fields shown within the Clone modal.
*/
export declare class GitCloneForm extends Widget {
/**
* Create a redirect form.
* @param translator - The language translator
*/
constructor(trans: TranslationBundle);
/**
* Returns the input value.
*/
getValue(): {
url: string;
versioning: boolean;
submodules: boolean;
};
private static createFormNode;
}