source: trip-planner-front/node_modules/@angular/material/stepper/stepper-intl.d.ts

Last change on this file was 6fe77af, checked in by Ema <ema_spirova@…>, 3 years ago

add location feature

  • Property mode set to 100644
File size: 1.3 KB
Line 
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 */
8import { Optional } from '@angular/core';
9import { Subject } from 'rxjs';
10/** Stepper data that is required for internationalization. */
11import * as ɵngcc0 from '@angular/core';
12export declare class MatStepperIntl {
13 /**
14 * Stream that emits whenever the labels here are changed. Use this to notify
15 * components if the labels have changed after initialization.
16 */
17 readonly changes: Subject<void>;
18 /** Label that is rendered below optional steps. */
19 optionalLabel: string;
20 /** Label that is used to indicate step as completed to screen readers. */
21 completedLabel: string;
22 /** Label that is used to indicate step as editable to screen readers. */
23 editableLabel: string;
24 static ɵfac: ɵngcc0.ɵɵFactoryDeclaration<MatStepperIntl, never>;
25}
26/** @docs-private */
27export declare function MAT_STEPPER_INTL_PROVIDER_FACTORY(parentIntl: MatStepperIntl): MatStepperIntl;
28/** @docs-private */
29export declare const MAT_STEPPER_INTL_PROVIDER: {
30 provide: typeof MatStepperIntl;
31 deps: Optional[][];
32 useFactory: typeof MAT_STEPPER_INTL_PROVIDER_FACTORY;
33};
34
35//# sourceMappingURL=stepper-intl.d.ts.map
Note: See TracBrowser for help on using the repository browser.