()
| 1462 | const getContent = (): Content => [getTables(), getValues()]; |
| 1463 | |
| 1464 | const getEncodedContent = (): Content => [ |
| 1465 | mapToObj3(tablesMap), |
| 1466 | mapToObj(valuesMap), |
| 1467 | ]; |
| 1468 | |
| 1469 | const getTables = (): Tables => mapToObj3(tablesMap, decodeIfJson); |
| 1470 |