# 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.ExcelSheet do @moduledoc """ Single Excel worksheet. Represents one sheet from an Excel workbook with its content converted to Markdown format and dimensional statistics. """ @typedoc "Single Excel worksheet." @type t :: %__MODULE__{ name: String.t() | nil, markdown: String.t() | nil, row_count: non_neg_integer(), col_count: non_neg_integer(), cell_count: non_neg_integer(), table_cells: [[String.t()]] | nil } defstruct name: nil, markdown: nil, row_count: 0, col_count: 0, cell_count: 0, table_cells: nil end