UNPKG

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) 784 B
import React from 'react'; import * as actions from '../../../modules/actions'; import type defaultState from '../../../modules/default-state'; import './style.css'; interface Props { toolName: typeof defaultState['apiValues']['toolName']; staticImageAccepter: typeof defaultState['staticImageAccepter']; staticAccepterConfig: typeof defaultState['config']['staticImageAccepter']; imagesById: typeof defaultState['tree']['images']['byId']; processing: typeof defaultState['processing']; actions: typeof actions; } declare const _default: import("react-redux").ConnectedComponent<React.FC<Props>, import("react-redux").Omit<Props, "staticImageAccepter" | "toolName" | "processing" | "actions" | "staticAccepterConfig" | "imagesById">>; export default _default;