frontend/.pnpm-store/v3/files/55/0c22b651a932097683fd6b272791334365980d4703a5ae2ae8a0bf6408e73fb4d3e2251860fb20c5a6d7aa3e53f70d308333dedc216358601f850ee7f05c4b

6 lines
181 B
Plaintext

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