CallingReturnProps type
Tipo auxiliar para usePropsFor.
type CallingReturnProps<Component> = GetCallingSelector<Component> extends (
state: CallClientState,
props: any
) => any
? ReturnType<GetCallingSelector<Component>> &
Common<CallingHandlers, Parameters<Component>[0]>
: never