UNPKG

@jupyterlab/git

Version:

A JupyterLab extension for version control using git

27 lines (26 loc) 643 B
/// <reference types="react" /> import { TranslationBundle } from '@jupyterlab/translation'; import { CommandRegistry } from '@lumino/commands'; /** * RebaseAction property */ export interface IRebaseActionProps { /** * Whether some files are in conflict or not. */ hasConflict: boolean; /** * Application command registry */ commands: CommandRegistry; /** * Translation object. */ trans: TranslationBundle; } /** * Component to trigger action resolving a rebase. * * @param props Component properties */ export declare function RebaseAction(props: IRebaseActionProps): JSX.Element;