mirror of
https://github.com/sindresorhus/type-fest.git
synced 2025-12-08 19:25:05 +00:00
6 lines
181 B
TypeScript
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>;
|