html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
15 lines (14 loc) • 832 B
TypeScript
declare function Details(props: any): import("react/jsx-runtime").JSX.Element;
declare namespace Details {
namespace propTypes {
let id: PropTypes.Requireable<string>;
let ariaControls: PropTypes.Requireable<(string | null | undefined)[]>;
let title: PropTypes.Validator<NonNullable<NonNullable<string | PropTypes.ReactElementLike | null | undefined>>>;
let content: PropTypes.Validator<NonNullable<NonNullable<string | any[] | PropTypes.ReactElementLike | ((...args: any[]) => any) | null | undefined>>>;
let extendClassNames: PropTypes.Requireable<NonNullable<string | any[] | null | undefined>>;
let onClick: PropTypes.Requireable<(...args: any[]) => any>;
let asHtml: PropTypes.Requireable<boolean>;
}
}
export default Details;
import PropTypes from 'prop-types';