jcmcneal / react-step-wizard

A modern flexible step wizard component built for React.
MIT License
583 stars 126 forks source link

StepWizardProps.transitions is missing intro type #100

Closed bundit closed 2 years ago

bundit commented 2 years ago

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
  },
  ...