mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
8 lines
311 B
TypeScript
8 lines
311 B
TypeScript
import { ElementUIComponent } from './component'
|
|
|
|
/** Skeleton Item Component */
|
|
export declare class ElSkeletonItem extends ElementUIComponent {
|
|
/** The current rendering skeleton type; default: text */
|
|
variant: 'p' | 'text' | 'h1' | 'h3' | 'text' | 'caption' | 'button' | 'image' | 'circle' | 'rect'
|
|
}
|