( tableId: Id, rowId: Id, storeOrStoreId?: StoreOrStoreId, )
| 775 | ); |
| 776 | |
| 777 | export const useHasRow: typeof useHasRowDecl = ( |
| 778 | tableId: Id, |
| 779 | rowId: Id, |
| 780 | storeOrStoreId?: StoreOrStoreId, |
| 781 | ): boolean => |
| 782 | useListenable(ROW, useStoreOrStoreById(storeOrStoreId), ReturnType.Boolean, [ |
| 783 | tableId, |
| 784 | rowId, |
| 785 | ]); |
| 786 | |
| 787 | export const useRow: typeof useRowDecl = ( |
| 788 | tableId: Id, |
searching dependent graphs…