( getProps: ((...ids: Ids) => Props) | undefined, ...ids: Ids )
| 23 | } = React; |
| 24 | |
| 25 | export const getProps = <Props extends IdObj<any>>( |
| 26 | getProps: ((...ids: Ids) => Props) | undefined, |
| 27 | ...ids: Ids |
| 28 | ): Props => (isUndefined(getProps) ? ({} as Props) : getProps(...ids)); |
| 29 | |
| 30 | export const getRelationshipsStoreTableIds = ( |
| 31 | relationships: Relationships | undefined, |
nothing calls this directly
no test coverage detected
searching dependent graphs…