@croct/rule-engine-experiments
Version:
A rule engine extension for A/B and multivariate testing.
12 lines (11 loc) • 356 B
TypeScript
import { ExperimentDefinitions, ExperimentProperties } from './extension';
declare module '@croct/plug-rule-engine/plugin' {
interface ExtensionConfigurations {
experiments?: ExperimentDefinitions | false;
}
}
declare module '@croct/plug-rule-engine/rule' {
interface RuleProperties {
experiment?: ExperimentProperties;
}
}