index.d.ts 1.1 KB

123456789101112131415161718192021222324
  1. export declare const SkeletonParagraph: import("../utils").WithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
  2. round: BooleanConstructor;
  3. rowWidth: {
  4. type: (NumberConstructor | StringConstructor)[];
  5. default: string;
  6. };
  7. }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
  8. round: BooleanConstructor;
  9. rowWidth: {
  10. type: (NumberConstructor | StringConstructor)[];
  11. default: string;
  12. };
  13. }>> & Readonly<{}>, {
  14. round: boolean;
  15. rowWidth: string | number;
  16. }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
  17. export default SkeletonParagraph;
  18. export { skeletonParagraphProps, DEFAULT_ROW_WIDTH } from './SkeletonParagraph';
  19. export type { SkeletonParagraphProps } from './SkeletonParagraph';
  20. declare module 'vue' {
  21. interface GlobalComponents {
  22. VanSkeletonParagraph: typeof SkeletonParagraph;
  23. }
  24. }