jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
4 lines (3 loc) • 397 B
TypeScript
import type { Link, LinksCustomizer, MaybeNullish, MaybePromise, PropertyExtractor } from 'jest-allure2-reporter';
export declare function links<Context>(customizer: LinksCustomizer<Context>): PropertyExtractor<Context, MaybePromise<Link[]>>;
export declare function links<Context>(customizer: MaybeNullish<LinksCustomizer<Context>>): PropertyExtractor<Context, MaybePromise<Link[]>> | undefined;