UNPKG

formik-wizard-simple

Version:
10 lines (9 loc) 237 B
export interface WizardContextProps { step: number; isLastStep: boolean; onNextStep: () => void; onPreviousStep: () => void; onSetStep: (value: number) => void; totalSteps: number; stepId?: string; }