UNPKG

html-reporter

Version:

Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.

9 lines (8 loc) 260 B
import { ReactNode } from 'react'; export interface AttemptPickerItemProps { resultId: string; isActive?: boolean; onClick?: () => unknown; title?: string; } export declare const AttemptPickerItem: (props: AttemptPickerItemProps) => ReactNode;