(
tablesSchema: TablesSchema,
valuesSchema?: ValuesSchema,
)
| 1801 | }); |
| 1802 | |
| 1803 | const setSchema = ( |
| 1804 | tablesSchema: TablesSchema, |
| 1805 | valuesSchema?: ValuesSchema, |
| 1806 | ): Store => |
| 1807 | fluentTransaction(() => { |
| 1808 | setTablesSchema(tablesSchema); |
| 1809 | setValuesSchema(valuesSchema as ValuesSchema); |
| 1810 | }); |
| 1811 | |
| 1812 | const delTables = (): Store => |
| 1813 | fluentTransaction(() => |
nothing calls this directly
no test coverage detected
searching dependent graphs…