jest-allure2-reporter
Version:
Idiomatic Jest reporter for Allure Framework
26 lines (23 loc) • 1.12 kB
text/typescript
import type {
MaybeNullish,
MaybePromise,
PropertyCustomizer,
PropertyExtractor,
} from 'jest-allure2-reporter';
export function constantExtractor(maybeExtractor: null | undefined): undefined;
export function constantExtractor<Context, Value, Result = Value>(
maybeExtractor: PropertyCustomizer<Context, Value, Result>,
): PropertyExtractor<Context, MaybePromise<Value>, MaybePromise<Result>>;
export function constantExtractor<Context, Value, Result = Value>(
maybeExtractor: MaybeNullish<PropertyCustomizer<Context, Value, Result>>,
): PropertyExtractor<Context, MaybePromise<Value>, MaybePromise<Result>> | undefined;
export function constantExtractor<Context, Value, Result = Value>(
maybeExtractor: MaybeNullish<PropertyCustomizer<Context, Value, Result>>,
): PropertyExtractor<Context, MaybePromise<Value>, MaybePromise<Result>> | undefined {
if (maybeExtractor == null) {
return undefined;
}
return typeof maybeExtractor === 'function'
? (maybeExtractor as PropertyExtractor<Context, MaybePromise<Value>, MaybePromise<Result>>)
: () => maybeExtractor as MaybePromise<Result>;
}