html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
12 lines (11 loc) • 332 B
TypeScript
export default CustomLabel;
declare function CustomLabel({ className, ...otherProps }: {
[x: string]: any;
className: any;
}): import("react/jsx-runtime").JSX.Element;
declare namespace CustomLabel {
namespace propTypes {
let className: PropTypes.Requireable<string>;
}
}
import PropTypes from 'prop-types';