ng-zorro-antd-mobile
Version:
An enterprise-class mobile UI components based on Ant Design and Angular
31 lines (30 loc) • 730 B
TypeScript
import { OnInit, ElementRef } from '@angular/core';
export declare class SliderStepsComponent implements OnInit {
private _elf;
prefixCls: string;
stepArray: any[];
private _min;
private _max;
private _step;
private _marks;
private _included;
private _upperBound;
private _lowerBound;
private _dots;
private _dotStyle;
private _activeDotStyle;
min: number;
max: number;
marks: object;
step: number;
included: boolean;
dots: boolean;
upperBound: number;
lowerBound: number;
readonly class: string;
constructor(_elf: ElementRef);
calPoints(): number[];
getSteps(points: any): void;
setActiveCls(): void;
ngOnInit(): void;
}