UNPKG

unleash-server

Version:

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

7 lines (6 loc) 185 B
export declare type DeepMutable<T> = { -readonly [P in keyof T]: DeepMutable<T[P]>; }; export declare type DeepImmutable<T> = { readonly [P in keyof T]: DeepImmutable<T[P]>; };