You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.3 KiB
31 lines
1.3 KiB
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
import { CdkStepper } from './stepper';
|
|
/** Button that moves to the next step in a stepper workflow. */
|
|
import * as ɵngcc0 from '@angular/core';
|
|
export declare class CdkStepperNext {
|
|
_stepper: CdkStepper;
|
|
/** Type of the next button. Defaults to "submit" if not specified. */
|
|
type: string;
|
|
constructor(_stepper: CdkStepper);
|
|
_handleClick(): void;
|
|
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkStepperNext, never>;
|
|
static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkStepperNext, "button[cdkStepperNext]", never, { "type": "type"; }, {}, never>;
|
|
}
|
|
/** 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);
|
|
_handleClick(): void;
|
|
static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkStepperPrevious, never>;
|
|
static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkStepperPrevious, "button[cdkStepperPrevious]", never, { "type": "type"; }, {}, never>;
|
|
}
|
|
|
|
//# sourceMappingURL=stepper-button.d.ts.map
|