UNPKG

ng-zorro-antd

Version:

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

29 lines (28 loc) 1.17 kB
/** * @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 { NgStyleInterface } from 'ng-zorro-antd/core'; export declare type NzProgressGapPositionType = 'top' | 'bottom' | 'left' | 'right'; export declare type NzProgressStatusType = 'success' | 'exception' | 'active' | 'normal'; export declare type NzProgressTypeType = 'line' | 'circle' | 'dashboard'; export declare type NzProgressStrokeLinecapType = 'round' | 'square'; export interface NzProgressGradientProgress { [percent: string]: string; } export interface NzProgressGradientFromTo { from: string; to: string; } export declare type NzProgressColorGradient = { direction?: string; } & (NzProgressGradientProgress | NzProgressGradientFromTo); export declare type NzProgressStrokeColorType = string | NzProgressColorGradient; export declare type NzProgressFormatter = (percent: number) => string; export interface NzProgressCirclePath { stroke: string | null; strokePathStyle: NgStyleInterface; }