( store: Store | undefined, create: (store: Store) => Relationships, createDeps?: DependencyList, )
| 1675 | ); |
| 1676 | |
| 1677 | export const useCreateRelationships: typeof useCreateRelationshipsDecl = ( |
| 1678 | store: Store | undefined, |
| 1679 | create: (store: Store) => Relationships, |
| 1680 | createDeps?: DependencyList, |
| 1681 | ): Relationships | undefined => useCreate(store, create, createDeps); |
| 1682 | |
| 1683 | export const useRelationshipsIds: typeof useRelationshipsIdsDecl = () => |
| 1684 | useThingIds(OFFSET_RELATIONSHIPS); |