(content: Content | (() => Content))
| 1567 | jsonStringWithMap([tablesSchemaMap, valuesSchemaMap]); |
| 1568 | |
| 1569 | const setContent = (content: Content | (() => Content)): Store => |
| 1570 | fluentTransaction(() => { |
| 1571 | const content2 = isFunction(content) ? content() : content; |
| 1572 | if (validateContent(content2)) { |
| 1573 | setValidContent(content2); |
| 1574 | } |
| 1575 | }); |
| 1576 | |
| 1577 | const setTables = (tables: Tables): Store => |
| 1578 | fluentTransaction(() => |
nothing calls this directly
no test coverage detected
searching dependent graphs…