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) 358 B
import actionNames from "../action-names"; import type { Action } from "./types"; export type ToggleLoadingAction = Action<typeof actionNames.TOGGLE_LOADING, { active: boolean; content?: string; }>; export declare const toggleLoading: (payload: ToggleLoadingAction['payload']) => ToggleLoadingAction; export type LoadingAction = ToggleLoadingAction;