type-fest/source/mutable.d.ts
2022-05-24 18:06:22 +07:00

6 lines
181 B
TypeScript

import type {Writable} from './writable';
/** @deprecated @see Writable */
export type Mutable<BaseType, Keys extends keyof BaseType = keyof BaseType> =
Writable<BaseType, Keys>;