travels
    Preparing search index...

    Type Alias TravelPatches<P>

    Forward/inverse JSON Patch groups. Retained-history APIs use one group per entry; observer events use event-local transition groups. Persisted paths use JSON Pointer strings or dense arrays of strings/non-negative integers.

    type TravelPatches<P extends PatchesOption = {}> = {
        inversePatches: Patches<P>[];
        patches: Patches<P>[];
    }

    Type Parameters

    Index

    Properties

    inversePatches: Patches<P>[]
    patches: Patches<P>[]