UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

29 lines (28 loc) 979 B
/** * @license * Copyright Alibaba.com 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://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { OnChanges, SimpleChanges } from '@angular/core'; import { BooleanInput, NumberInput } from 'ng-zorro-antd/core/types'; export interface NzSliderTrackStyle { bottom?: string | null; height?: string | null; left?: string | null; width?: string | null; visibility?: string; } export declare class NzSliderTrackComponent implements OnChanges { static ngAcceptInputType_offset: NumberInput; static ngAcceptInputType_length: NumberInput; static ngAcceptInputType_vertical: BooleanInput; static ngAcceptInputType_included: BooleanInput; offset: number; length: number; vertical: boolean; included: boolean; style: NzSliderTrackStyle; ngOnChanges(changes: SimpleChanges): void; }