Home > @uniformdev/context > TestResult

TestResult type

The result of computing an A/B test result

Signature:

type TestResult<TVariant> = {
    result: TVariant | undefined;
    variantAssigned: boolean;
};