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) 430 B
import type { Action } from "./types"; import actionNames from "../action-names"; import { Feature } from "../../../constants"; export type SetAvailableFeaturesAction = Action<typeof actionNames.SET_AVAILABLE_FEATURES, { features: Feature[]; }>; export declare const setAvailableFeatures: (payload: SetAvailableFeaturesAction['payload']) => SetAvailableFeaturesAction; export type FeaturesAction = SetAvailableFeaturesAction;