Performs keyof on all keys within the OriginalObject that have values not matching the given Matcher.
keyof
OriginalObject
Matcher
import {ExcludeKeysWithMatchingValues} from '@augment-vir/common';type ExcludedKeys = ExcludeKeysWithMatchingValues<{a: RegExp; b: string}, string>;// `ExcludedKeys` is `'a'` Copy
import {ExcludeKeysWithMatchingValues} from '@augment-vir/common';type ExcludedKeys = ExcludeKeysWithMatchingValues<{a: RegExp; b: string}, string>;// `ExcludedKeys` is `'a'`
@augment-vir/common
Performs
keyof
on all keys within theOriginalObject
that have values not matching the givenMatcher
.