source: trip-planner-front/node_modules/@angular/material/stepper/stepper-icon.d.ts@ 76712b2

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

initial commit

  • Property mode set to 100644
File size: 893 bytes
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 { TemplateRef } from '@angular/core';
9import { StepState } from '@angular/cdk/stepper';
10/** Template context available to an attached `matStepperIcon`. */
11export interface MatStepperIconContext {
12 /** Index of the step. */
13 index: number;
14 /** Whether the step is currently active. */
15 active: boolean;
16 /** Whether the step is optional. */
17 optional: boolean;
18}
19/**
20 * Template to be used to override the icons inside the step header.
21 */
22export declare class MatStepperIcon {
23 templateRef: TemplateRef<MatStepperIconContext>;
24 /** Name of the icon to be overridden. */
25 name: StepState;
26 constructor(templateRef: TemplateRef<MatStepperIconContext>);
27}
Note: See TracBrowser for help on using the repository browser.