scripts/node_modules/type-fest/source/mutable.d.ts

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>;