skeleton-item.d.ts 311 B

1234567
  1. import { ElementUIComponent } from './component'
  2. /** Skeleton Item Component */
  3. export declare class ElSkeletonItem extends ElementUIComponent {
  4. /** The current rendering skeleton type; default: text */
  5. variant: 'p' | 'text' | 'h1' | 'h3' | 'text' | 'caption' | 'button' | 'image' | 'circle' | 'rect'
  6. }