UNPKG

@material-tailwind/html

Version:

Material Tailwind is an open-source library that uses the power of Tailwind CSS and React to help you build unique web projects faster and easier. The stunning design inspired by Material Design is a bonus!

16 lines (15 loc) 412 B
import { StepperConfig, IStepper } from './stepper.types'; export declare class Stepper implements IStepper { private steps; private contents; private prevButton; private nextButton; private currentStep; constructor(config: StepperConfig); private updateState; next(): void; prev(): void; goToStep(step: number): void; getCurrentStep(): number; destroy(): void; }