import { Deep } from "https://deno.land/x/rimbu@0.13.5/deep/mod.ts";
const { Patch } = Deep;
Type Aliases
The entry type for a (nested) patch. Can be either a patch object or a function accepting the nested patch function and returning a patch object. | |
A function patch type that is a function taking the current value, the parent and root values, and returns a return value. | |
Utility type to exclude Iterable types. | |
A type defining the allowed patch values for objects. | |
A type defining the allowed patch values for object properties. | |
A type defining the allowed patch values for tuples. | |
Either result type S, or a patch function with the value type, the parent type, and the root type. |
import { type Deep } from "https://deno.land/x/rimbu@0.13.5/deep/mod.ts";
const { Patch } = Deep;
A type to determine the allowed input type for the patch
function.
Type Parameters
optional
C = Tdefinition: Patch.Entry<T, C, T, T>