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

    Type Alias Except<ObjectType, KeysType, Options>

    Except: ExceptHelper<
        ObjectType,
        KeysType,
        ApplyDefaultOptions<ExceptOptions, DefaultExceptOptions, Options>,
    >

    Create a type from an object type without certain keys. This is a stricter version of the built-in Omit type: it restricts the omitted keys to keys present on the given type.

    Copied from the Except 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