@rbxts/fletchette
    Preparing search index...

    Type Alias PatchChange<K, V>

    type PatchChange<K, V> = {
        deletes: (keyof V & string)[];
        key: K;
        sets: Partial<V>;
        type: Patch;
    }

    Type Parameters

    • K
    • V
    Index

    Properties

    Properties

    deletes: (keyof V & string)[]
    key: K
    sets: Partial<V>
    type: Patch