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