UNPKG

ant-design-vue

Version:

An enterprise-class UI design language and Vue-based implementation

25 lines (24 loc) 967 B
import type { ExtractPropTypes, PropType } from 'vue'; type widthUnit = number | string; export declare const skeletonParagraphProps: () => { prefixCls: StringConstructor; width: { type: PropType<widthUnit | widthUnit[]>; }; rows: NumberConstructor; }; export type SkeletonParagraphProps = Partial<ExtractPropTypes<ReturnType<typeof skeletonParagraphProps>>>; declare const SkeletonParagraph: import("vue").DefineComponent<{ prefixCls: StringConstructor; width: { type: PropType<widthUnit | widthUnit[]>; }; rows: NumberConstructor; }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{ prefixCls: StringConstructor; width: { type: PropType<widthUnit | widthUnit[]>; }; rows: NumberConstructor; }>>, {}, {}>; export default SkeletonParagraph;