UNPKG

theme-lib

Version:

This is a simple example Angular Library published to npm.

21 lines (20 loc) 616 B
import { QueryList } from '@angular/core'; import { NbStepComponent } from './step.component'; export declare enum NbStepperOrientation { VERTICAL = "vertical", HORIZONTAL = "horizontal" } export declare class NbStepperComponent { steps: QueryList<NbStepComponent>; readonly vertical: boolean; readonly horizontal: boolean; selectedIndex: number; selected: NbStepComponent | undefined; orientation: string; private index; next(): void; previous(): void; reset(): void; isStepSelected(step: NbStepComponent): boolean; private isStepValid; }