UNPKG

materialize-angular

Version:
24 lines (23 loc) 813 B
/** * @license * Copyright Workylab. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://raw.githubusercontent.com/workylab/materialize-angular/master/LICENSE */ import { AfterContentInit, QueryList } from '@angular/core'; import { StepComponent } from './step/step.component'; import { StepperModel } from './stepper.model'; export declare class StepperComponent implements StepperModel, AfterContentInit { static readonly defaultProps: StepperModel; className: string; activeIndex: number; showTicks: boolean; steps: QueryList<StepComponent>; prefix: string; isContentReady: boolean; constructor(); ngAfterContentInit(): void; validateContent(): void; validateSteps(): void; }