UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

7 lines 206 B
export type DeepMutable<T> = { -readonly [P in keyof T]: DeepMutable<T[P]>; }; export type DeepImmutable<T> = { readonly [P in keyof T]: DeepImmutable<T[P]>; }; //# sourceMappingURL=mutable.d.ts.map