Current section
Files
Jump to
Current section
Files
lib/xberg/excel_sheet.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:44df7621a52239a822c632ad86d25d572eb9ff921657c2db06767d4dad50098a
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.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