# This file is auto-generated by alef — DO NOT EDIT. # alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75 # To regenerate: alef generate # To verify freshness: alef verify --exit-code # Issues & docs: https://github.com/kreuzberg-dev/alef defmodule Kreuzberg.TableDiff do @moduledoc "Cell-level changes for a pair of tables that share the same index." @typedoc "Cell-level changes for a pair of tables that share the same index." @type t :: %__MODULE__{ from_index: non_neg_integer(), to_index: non_neg_integer(), cell_changes: [map()] } defstruct from_index: 0, to_index: 0, cell_changes: [] end