1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 | import { CdkStepper } from './stepper';
|
---|
9 | /** Button that moves to the next step in a stepper workflow. */
|
---|
10 | import * as ɵngcc0 from '@angular/core';
|
---|
11 | export declare class CdkStepperNext {
|
---|
12 | _stepper: CdkStepper;
|
---|
13 | /** Type of the next button. Defaults to "submit" if not specified. */
|
---|
14 | type: string;
|
---|
15 | constructor(_stepper: CdkStepper);
|
---|
16 | _handleClick(): void;
|
---|
17 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkStepperNext, never>;
|
---|
18 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkStepperNext, "button[cdkStepperNext]", never, { "type": "type"; }, {}, never>;
|
---|
19 | }
|
---|
20 | /** Button that moves to the previous step in a stepper workflow. */
|
---|
21 | export declare class CdkStepperPrevious {
|
---|
22 | _stepper: CdkStepper;
|
---|
23 | /** Type of the previous button. Defaults to "button" if not specified. */
|
---|
24 | type: string;
|
---|
25 | constructor(_stepper: CdkStepper);
|
---|
26 | _handleClick(): void;
|
---|
27 | static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<CdkStepperPrevious, never>;
|
---|
28 | static ɵdir: ɵngcc0.ɵɵDirectiveDeclaration<CdkStepperPrevious, "button[cdkStepperPrevious]", never, { "type": "type"; }, {}, never>;
|
---|
29 | }
|
---|
30 |
|
---|
31 | //# sourceMappingURL=stepper-button.d.ts.map |
---|