html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
8 lines (7 loc) • 512 B
TypeScript
import actionNames from "../action-names";
import { type Action, AppThunk } from "./types";
import { CustomGuiActionPayload } from "../../../adapters/tool/types";
export type RunCustomGuiAction = Action<typeof actionNames.RUN_CUSTOM_GUI_ACTION, CustomGuiActionPayload>;
export declare const runCustomGui: (payload: RunCustomGuiAction['payload']) => RunCustomGuiAction;
export declare const thunkRunCustomGuiAction: (payload: CustomGuiActionPayload) => AppThunk;
export type CustomGuiAction = RunCustomGuiAction;