IModalWizardStepProps
Definition
interface IModalWizardStepProps {
/**
* Triggers the wizard to move to the next stage
*/
next: () => void;
/**
* Triggers the wizard to move the previous stage
*/
prev: () => void;
/**
* Information about the current stage
*/
currentStep: IModalWizardStep;
data?: any;
}Usage
Related Types
Last updated