UNPKG

html-reporter

Version:

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

14 lines (13 loc) 582 B
import { DiffModeId } from "../../../constants"; import { Action } from "./types"; import actionNames from "../action-names"; type UpdateBaseHostAction = Action<typeof actionNames.VIEW_UPDATE_BASE_HOST, { host: string; }>; export declare const updateBaseHost: (host: string) => UpdateBaseHostAction; type SetDiffModeAction = Action<typeof actionNames.SET_DIFF_MODE, { diffModeId: DiffModeId; }>; export declare const setDiffMode: (payload: SetDiffModeAction['payload']) => SetDiffModeAction; export type SettingsAction = UpdateBaseHostAction | SetDiffModeAction; export {};