UNPKG

hypertune

Version:

[Hypertune](https://www.hypertune.com/) is the most flexible platform for feature flags, A/B testing, analytics and app configuration. Built with full end-to-end type-safety, Git-style version control and local, synchronous, in-memory flag evaluation. Opt

10 lines 411 B
export type FrequentistMetricsResult = { upLift: number; lowerBound: number; upperBound: number; isSignificant: boolean; }; export default function calculateFrequentistMetrics(successes: number[], visitors: number[], controlIndex: number, confidence: number, oneSided: boolean): { [index: number]: FrequentistMetricsResult; } | null; //# sourceMappingURL=calculateFrequentistMetrics.d.ts.map