(content)
| 1881 | const getValuesSchemaJson = () => jsonStringWithMap(valuesSchemaMap); |
| 1882 | const getSchemaJson = () => jsonStringWithMap([tablesSchemaMap, valuesSchemaMap]); |
| 1883 | const setContent = (content) => fluentTransaction(() => { |
| 1884 | const content2 = isFunction(content) ? content() : content; |
| 1885 | if (validateContent(content2)) { |
| 1886 | setValidContent(content2); |
| 1887 | } |
| 1888 | }); |
| 1889 | const setTables = (tables) => fluentTransaction( |
| 1890 | () => validateTables(tables) ? setValidTables(tables) : 0 |
| 1891 | ); |
nothing calls this directly
no test coverage detected
searching dependent graphs…