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

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

initial commit

  • Property mode set to 100644
File size: 1.2 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. */
11export declare class MatStepperIntl {
12 /**
13 * Stream that emits whenever the labels here are changed. Use this to notify
14 * components if the labels have changed after initialization.
15 */
16 readonly changes: Subject<void>;
17 /** Label that is rendered below optional steps. */
18 optionalLabel: string;
19 /** Label that is used to indicate step as completed to screen readers. */
20 completedLabel: string;
21 /** Label that is used to indicate step as editable to screen readers. */
22 editableLabel: string;
23}
24/** @docs-private */
25export declare function MAT_STEPPER_INTL_PROVIDER_FACTORY(parentIntl: MatStepperIntl): MatStepperIntl;
26/** @docs-private */
27export declare const MAT_STEPPER_INTL_PROVIDER: {
28 provide: typeof MatStepperIntl;
29 deps: Optional[][];
30 useFactory: typeof MAT_STEPPER_INTL_PROVIDER_FACTORY;
31};
Note: See TracBrowser for help on using the repository browser.