@jupyterlab/git
Version:
A JupyterLab extension for version control using git
17 lines (16 loc) • 372 B
TypeScript
import { DocumentRegistry } from '@jupyterlab/docregistry';
import * as React from 'react';
/**
* FilePath component properties
*/
export interface IFilePathProps {
/**
* File path
*/
filepath: string;
/**
* File type
*/
filetype?: DocumentRegistry.IFileType;
}
export declare const FilePath: React.FunctionComponent<IFilePathProps>;