UNPKG

@allurereport/plugin-classic

Version:

The classic version of Allure HTML report

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