step-label.d.ts 383 B

123456789101112
  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 { TemplateRef } from '@angular/core';
  9. export declare class CdkStepLabel {
  10. template: TemplateRef<any>;
  11. constructor(/** @docs-private */ template: TemplateRef<any>);
  12. }