(valueId, storeOrStoreId)
| 534 | [valueId] |
| 535 | ); |
| 536 | var useValueState = (valueId, storeOrStoreId) => [ |
| 537 | useValue(valueId, storeOrStoreId), |
| 538 | useSetValueCallback(valueId, getArg, storeOrStoreId) |
| 539 | ]; |
| 540 | var useSetTablesCallback = (getTables, storeOrStoreId, then) => useStoreSetCallback(storeOrStoreId, TABLES, getTables, then); |
| 541 | var useSetTableCallback = (tableId, getTable, storeOrStoreId, then) => useStoreSetCallback(storeOrStoreId, TABLE, getTable, then, tableId); |
| 542 | var useSetRowCallback = (tableId, rowId, getRow, storeOrStoreId, then) => useStoreSetCallback(storeOrStoreId, ROW, getRow, then, tableId, rowId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…