jcmcneal/react-step-wizard

StepWizardProps.transitions is missing intro type

bundit opened this issue · 0 comments

Screen Shot 2021-12-15 at 11 27 02 AM

index.d.ts:

export type StepWizardProps = Partial<{
  ...,
  transitions: {
    enterRight?: string
    enterLeft?: string
    exitRight?: string
    exitLeft?: string
  },
  ...