R
T

ReactiveOmitPredicate

testeddemo

Predicate deciding, per field, whether a key should be omitted. Return `true` to drop the field.

Demo

Loading demo…

Signature

ts
export type ReactiveOmitPredicate<T extends object>
  = (value: T[keyof T], key: keyof T) => boolean;

Type Parameters

Textends object