@jupyterlab/git
Version:
A JupyterLab extension for version control using git
36 lines (35 loc) • 848 B
TypeScript
import * as React from 'react';
import { Git } from '../tokens';
import { GitExtension } from '../model';
import { TranslationBundle } from '@jupyterlab/translation';
export interface IGitStashProps {
/**
* Actions component to display at the far right of the stage
*/
actions?: React.ReactElement;
/**
* Is this group collapsible
*/
collapsible?: boolean;
/**
* Git extension model
*/
model: GitExtension;
/**
* Files in the group
*/
stash: Git.IStash[];
/**
* HTML element height
*/
height: number;
/**
* Optional select all element
*/
selectAllButton?: React.ReactElement;
/**
* The application language translator.
*/
trans: TranslationBundle;
}
export declare const GitStash: React.FunctionComponent<IGitStashProps>;