UNPKG

antd-mobile-taro-ui

Version:

以antd-mobile为设计标准,基于taro框架的微信小程序组件库

16 lines (15 loc) 590 B
import { FC } from 'react'; import { NativeProps } from 'antd-mobile/es/utils/native-props'; export declare type SkeletonProps = { animated?: boolean; } & NativeProps<'--width' | '--height' | '--border-radius'>; export declare const Skeleton: FC<SkeletonProps>; export declare type SkeletonTitleProps = { animated?: boolean; } & NativeProps; export declare const SkeletonTitle: FC<SkeletonTitleProps>; export declare type SkeletonParagraphProps = { animated?: boolean; lineCount?: number; } & NativeProps; export declare const SkeletonParagraph: FC<SkeletonParagraphProps>;