@angular/cdk
Version:
Angular Material Component Development Kit
16 lines (15 loc) • 578 B
TypeScript
import { CdkStepper } from './stepper';
/** Button that moves to the next step in a stepper workflow. */
export declare class CdkStepperNext {
_stepper: CdkStepper;
/** Type of the next button. Defaults to "submit" if not specified. */
type: string;
constructor(_stepper: CdkStepper);
}
/** Button that moves to the previous step in a stepper workflow. */
export declare class CdkStepperPrevious {
_stepper: CdkStepper;
/** Type of the previous button. Defaults to "button" if not specified. */
type: string;
constructor(_stepper: CdkStepper);
}