(children, properties)
| 723 | } |
| 724 | |
| 725 | function Table(children, properties) { |
| 726 | properties = properties || {}; |
| 727 | return { |
| 728 | type: types.table, |
| 729 | children: children, |
| 730 | styleId: properties.styleId || null, |
| 731 | styleName: properties.styleName || null |
| 732 | }; |
| 733 | } |
| 734 | |
| 735 | function TableRow(children, options) { |
| 736 | options = options || {}; |
nothing calls this directly
no outgoing calls
no test coverage detected