type Update<T>
A value of type T, or a function taking a value of type T and returning a new value of type T.
Definition
export type Update<T> = T
|
((value: T) => T);
type Update<T>
A value of type T, or a function taking a value of type T and returning a new value of type T.
export type Update<T> = T
|
((value: T) => T);