html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
22 lines (21 loc) • 970 B
TypeScript
export default class ControlSelect extends React.Component<any, any, any> {
static propTypes: {
size: PropTypes.Requireable<string>;
label: PropTypes.Validator<string>;
value: PropTypes.Validator<string>;
handler: PropTypes.Validator<(...args: any[]) => any>;
options: PropTypes.Validator<(PropTypes.InferProps<{
value: PropTypes.Requireable<string>;
text: PropTypes.Requireable<string>;
}> | null | undefined)[]>;
extendClassNames: PropTypes.Requireable<NonNullable<string | any[] | null | undefined>>;
extendPopupClassNames: PropTypes.Requireable<NonNullable<string | any[] | null | undefined>>;
qa: PropTypes.Requireable<string>;
};
constructor(props: any);
constructor(props: any, context: any);
_onUpdate: (values: any) => void;
render(): import("react/jsx-runtime").JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';