The type of the source object
The key type (subset of keyof T) to exclude
A new object containing all own enumerable properties of source except those listed in keys.
Returns an empty object if source is null or undefined.
Creates a new object composed of the enumerable own properties of source except for
those matching the provided keys.
The type of the source object
The source object to omit from
The array of keys to exclude
A new object containing all own enumerable properties of source except those listed in keys.
Returns an empty object if source is null or undefined.
Creates a new object composed of the enumerable own properties of source except for
those matching the provided keys.
The type of the source object
The source object to omit from
The array of keys to exclude
A new object containing all own enumerable properties of source except those listed in keys.
Returns an empty object if source is null or undefined.
Creates a new object composed of the enumerable own properties of
sourceexcept for those matching the providedkeys.