ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
17 lines (16 loc) • 439 B
TypeScript
import { OnChanges, SimpleChanges } from '@angular/core';
export interface NzSliderTrackStyle {
bottom?: string;
height?: string;
left?: string;
width?: string;
visibility?: string;
}
export declare class NzSliderTrackComponent implements OnChanges {
nzOffset: any;
nzLength: any;
nzVertical: boolean;
nzIncluded: boolean;
style: NzSliderTrackStyle;
ngOnChanges(changes: SimpleChanges): void;
}