Retrieves the keys that are mutable from an object of type T.
type ExampleType = { a: number; readonly b: string; c: { a: string; d: { readonly x: Nullable; v: Maybe<Newable> }; };}; type MutableKeysOfExampleType = MutableKeys<ExampleType>;// Result: 'a' | 'c' Copy
type ExampleType = { a: number; readonly b: string; c: { a: string; d: { readonly x: Nullable; v: Maybe<Newable> }; };}; type MutableKeysOfExampleType = MutableKeys<ExampleType>;// Result: 'a' | 'c'
Retrieves the keys that are mutable from an object of type T.