T
ReactivePickReturn
testeddemoThe reactive object produced by {@link reactivePick}: a subset of `T` restricted to the picked keys `K`, with each value unwrapped.
Demo
Loading demo…
Signature
ts
export type ReactivePickReturn<T extends object, K extends keyof T>
= { [Key in K]: UnwrapRef<T[Key]> };Type Parameters
Textends objectKextends keyof T