augment-vir - v32.2.2
    Preparing search index...

    Type Alias WritableKeysOf<Type>

    WritableKeysOf: Type extends unknown
        ? Exclude<keyof Type, ReadonlyKeysOf<Type>>
        : never

    Extract all writable keys from the given type.

    Copied from the WritableKeysOf type in the type-fest package so that this package's public types do not depend on type-fest (see the note in type-checks.ts).

    Type Parameters

    • Type extends object