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
6 lines • 317 B
TypeScript
import { ObjectValue } from "../shared/types";
export default function decodeFlagValues<FlagValues extends ObjectValue, Flag extends keyof FlagValues & string>({ flagPaths, encodedValues, }: {
flagPaths: Flag[];
encodedValues: string;
}): Pick<FlagValues, Flag>;
//# sourceMappingURL=decodeFlagValues.d.ts.map