Paragraph.d.ts 967 B

123456789101112131415161718192021222324
  1. import type { ExtractPropTypes, PropType } from 'vue';
  2. type widthUnit = number | string;
  3. export declare const skeletonParagraphProps: () => {
  4. prefixCls: StringConstructor;
  5. width: {
  6. type: PropType<widthUnit | widthUnit[]>;
  7. };
  8. rows: NumberConstructor;
  9. };
  10. export type SkeletonParagraphProps = Partial<ExtractPropTypes<ReturnType<typeof skeletonParagraphProps>>>;
  11. declare const SkeletonParagraph: import("vue").DefineComponent<{
  12. prefixCls: StringConstructor;
  13. width: {
  14. type: PropType<widthUnit | widthUnit[]>;
  15. };
  16. rows: NumberConstructor;
  17. }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
  18. prefixCls: StringConstructor;
  19. width: {
  20. type: PropType<widthUnit | widthUnit[]>;
  21. };
  22. rows: NumberConstructor;
  23. }>>, {}, {}>;
  24. export default SkeletonParagraph;