UNPKG

html-reporter

Version:

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

6 lines (5 loc) 296 B
import { ReporterConfig, ReporterOptions } from '../types'; type AssertionFn<T> = (value: unknown) => asserts value is T; export declare const assertNumber: (name: string) => AssertionFn<number>; export declare const parseConfig: (options: Partial<ReporterOptions>) => ReporterConfig; export {};