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

6 lines 255 B
import { DeepPartial, Value } from "../shared/types"; /** * merge recursively merges sources into value, returning a value. */ export default function merge<T extends Value>(value: T, ...sources: DeepPartial<T>[]): T; //# sourceMappingURL=merge.d.ts.map