R
T

ReactivePickPredicate

testeddemo

Predicate form: receive each `(value, key)` pair of the source object and return `true` to keep the key in the resulting reactive view.

Demo

Loading demo…

Signature

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

Type Parameters

Textends object