UNPKG

@allurereport/plugin-dashboard

Version:

Allure Dashboard Plugin – plugin for generating dashboard with a mix of charts

12 lines (11 loc) 622 B
import { type AllureStore, type Plugin, type PluginContext, type PluginSummary } from "@allurereport/plugin-api"; import type { DashboardPluginOptions } from "./model.js"; export declare class DashboardPlugin implements Plugin { #private; readonly options: DashboardPluginOptions; constructor(options?: DashboardPluginOptions); start: (context: PluginContext) => Promise<void>; update: (context: PluginContext, store: AllureStore) => Promise<void>; done: (context: PluginContext, store: AllureStore) => Promise<void>; info(context: PluginContext, store: AllureStore): Promise<PluginSummary>; }