The instance prop from StepWizardProps is wrongly typed:
|
instance: (wizard: StepWizardProps) => void |
It should be instance: (wizard: StepWizardChildProps) => void instead, this can be verified by console.log of the instance (SW from the demo) and check the logged props of the object.
The instance prop from
StepWizardPropsis wrongly typed:react-step-wizard/src/index.d.ts
Line 10 in c2b9448
It should be
instance: (wizard: StepWizardChildProps) => voidinstead, this can be verified by console.log of the instance (SWfrom the demo) and check the logged props of the object.