astro-ghostcms/.pnpm-store/v3/files/55/0c22b651a932097683fd6b27279...

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