123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- import { type PropType, type ExtractPropTypes } from 'vue';
- import { type Numeric } from '../utils';
- export declare type SkeletonAvatarShape = 'square' | 'round';
- declare const skeletonProps: {
- row: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- };
- title: BooleanConstructor;
- round: BooleanConstructor;
- avatar: BooleanConstructor;
- loading: {
- type: BooleanConstructor;
- default: true;
- };
- animate: {
- type: BooleanConstructor;
- default: true;
- };
- avatarSize: (NumberConstructor | StringConstructor)[];
- titleWidth: (NumberConstructor | StringConstructor)[];
- avatarShape: {
- type: PropType<SkeletonAvatarShape>;
- default: SkeletonAvatarShape;
- };
- rowWidth: {
- type: PropType<Numeric | Numeric[]>;
- default: string;
- };
- };
- export declare type SkeletonProps = ExtractPropTypes<typeof skeletonProps>;
- declare const _default: import("vue").DefineComponent<{
- row: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- };
- title: BooleanConstructor;
- round: BooleanConstructor;
- avatar: BooleanConstructor;
- loading: {
- type: BooleanConstructor;
- default: true;
- };
- animate: {
- type: BooleanConstructor;
- default: true;
- };
- avatarSize: (NumberConstructor | StringConstructor)[];
- titleWidth: (NumberConstructor | StringConstructor)[];
- avatarShape: {
- type: PropType<SkeletonAvatarShape>;
- default: SkeletonAvatarShape;
- };
- rowWidth: {
- type: PropType<Numeric | Numeric[]>;
- default: string;
- };
- }, () => JSX.Element | import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
- [key: string]: any;
- }>[] | undefined, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
- row: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- };
- title: BooleanConstructor;
- round: BooleanConstructor;
- avatar: BooleanConstructor;
- loading: {
- type: BooleanConstructor;
- default: true;
- };
- animate: {
- type: BooleanConstructor;
- default: true;
- };
- avatarSize: (NumberConstructor | StringConstructor)[];
- titleWidth: (NumberConstructor | StringConstructor)[];
- avatarShape: {
- type: PropType<SkeletonAvatarShape>;
- default: SkeletonAvatarShape;
- };
- rowWidth: {
- type: PropType<Numeric | Numeric[]>;
- default: string;
- };
- }>>, {
- title: boolean;
- animate: boolean;
- round: boolean;
- loading: boolean;
- row: string | number;
- avatar: boolean;
- avatarShape: SkeletonAvatarShape;
- rowWidth: Numeric | Numeric[];
- }>;
- export default _default;
|