import { LDEvaluationDetail as CommonDetail, LDEvaluationDetailTyped as CommonDetailTyped, LDEvaluationReason } from '@launchdarkly/js-sdk-common'; /** * An object that combines the result of a feature flag evaluation with information about * how it was calculated. * * This is the result of calling `LDClient.variationDetail`. */ export type LDEvaluationDetail = Omit & { /** * An optional object describing the main factor that influenced the flag evaluation value. */ reason?: LDEvaluationReason; }; /** * An object that combines the result of a feature flag evaluation with information about * how it was calculated. * * This is the result of calling detailed variation methods. */ export type LDEvaluationDetailTyped = Omit, 'reason'> & { /** * An optional object describing the main factor that influenced the flag evaluation value. */ reason?: LDEvaluationReason; }; //# sourceMappingURL=LDEvaluationDetail.d.ts.map