@jupyterlab/git
Version:
A JupyterLab extension for version control using git
25 lines (24 loc) • 543 B
TypeScript
import * as React from 'react';
/**
* Action button properties interface
*/
export interface ISelectAllButtonProps {
/**
* Customize class name
*/
className?: string;
/**
* On-click event handler
*/
onChange?: (event?: React.ChangeEvent<HTMLInputElement>) => void;
/**
* Whether the checkbox is checked
*/
checked: boolean;
}
/**
* Action button component
*
* @param props Component properties
*/
export declare const SelectAllButton: React.FunctionComponent<ISelectAllButtonProps>;