UNPKG

ng-zorro-antd

Version:

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

25 lines (24 loc) 838 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 */ export declare type ParagraphWidth = number | string | Array<number | string>; export declare type ButtonShape = 'circle' | 'round' | 'default'; export declare type AvatarShape = 'square' | 'circle'; export declare type InputSize = 'large' | 'small' | 'default'; export declare type ButtonSize = InputSize; export declare type AvatarSize = InputSize | number; export interface NzSkeletonAvatar { size?: AvatarSize; shape?: AvatarShape; } export interface NzSkeletonTitle { width?: number | string; } export interface NzSkeletonParagraph { rows?: number; width?: ParagraphWidth; }