( storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, )
| 702 | ]; |
| 703 | |
| 704 | export const useValueIds = ( |
| 705 | storeOrStoreId?: MaybeAccessor<StoreOrStoreId | undefined>, |
| 706 | ): Accessor<Ids> => |
| 707 | useListenable( |
| 708 | VALUE_IDS, |
| 709 | useStoreOrStoreById(storeOrStoreId), |
| 710 | ReturnType.Array, |
| 711 | ); |
| 712 | |
| 713 | export const useHasValue = ( |
| 714 | valueId: MaybeAccessor<Id>, |
searching dependent graphs…