UNPKG

@aimake/nanod

Version:

## 设计模式 NANO DESIGN 是面向于企业级中台化应用的解决方案。服务于 ToB 和 ToE 类型的单页应用,应用于各产品中从而产出了一套设计及前端规范。

15 lines (14 loc) 438 B
import * as React from 'react'; declare type widthUnit = number | string; export interface SkeletonParagraphProps { prefixCls?: string; className?: string; style?: object; width?: widthUnit | Array<widthUnit>; rows?: number; } declare class Paragraph extends React.Component<SkeletonParagraphProps, {}> { getWidth(index: number): string | number | undefined; render(): JSX.Element; } export default Paragraph;