# frozen_string_literal: true module Notare module Nodes class TableCell < Base attr_reader :runs, :width def initialize(width: nil) super() @runs = [] @width = width end def add_run(run) @runs << run end end end end