# sig/terminal-table/cell.rbs class Terminal::Table def ==: () -> untyped def add_row: () -> untyped def add_separator: () -> untyped def additional_column_widths: () -> untyped def align_column: () -> untyped def cell_padding: () -> untyped def cell_spacing: () -> untyped def column: () -> untyped def column_width: () -> untyped def column_with_headings: () -> untyped def columns: () -> untyped def columns_width: () -> untyped def headings=: () -> untyped def headings_with_rows: () -> untyped def initialize: () -> void def number_of_columns: () -> untyped def recalc_column_widths: () -> untyped def render: () -> untyped def rows: () -> untyped def rows=: () -> untyped def style: () -> untyped def style=: () -> untyped def title=: () -> untyped def title_cell_options: () -> untyped def yield_or_eval: () -> untyped end # sig/terminal-table/cell.rbs class Terminal::Table::Cell def align: () -> untyped def alignment: () -> untyped def alignment=: () -> untyped def alignment?: () -> untyped def escape: () -> untyped def initialize: () -> void def lines: () -> untyped def render: () -> untyped def value_for_column_width_recalc: () -> untyped def width: () -> untyped end # sig/terminal-table/row.rbs class Terminal::Table::Row def []: () -> untyped def add_cell: () -> untyped def height: () -> untyped def initialize: () -> void def render: () -> untyped end # sig/terminal-table/separator.rbs class Terminal::Table::Separator < Terminal::Table::Row def render: () -> untyped end # sig/terminal-table/style.rbs class Terminal::Table::Style def apply: () -> untyped def defaults: () -> untyped def defaults=: () -> untyped def initialize: () -> void end # sig/terminal-table/table_helper.rbs module Terminal::Table::TableHelper def table: () -> untyped end