( storeOrStoreId?: StoreOrStoreId, )
| 659 | useListenable(TABLES, useStoreOrStoreById(storeOrStoreId), ReturnType.Object); |
| 660 | |
| 661 | export const useTablesState: typeof useTablesStateDecl = ( |
| 662 | storeOrStoreId?: StoreOrStoreId, |
| 663 | ): [Tables, (tables: Tables) => void] => [ |
| 664 | useTables(storeOrStoreId), |
| 665 | useSetTablesCallback(getArg, [], storeOrStoreId), |
| 666 | ]; |
| 667 | |
| 668 | export const useTableIds: typeof useTableIdsDecl = ( |
| 669 | storeOrStoreId?: StoreOrStoreId, |