UNPKG

t-fighting-design

Version:

Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.

74 lines (73 loc) 2.41 kB
import type { SkeletonSizeType } from './src/interface.d'; import type { DefineComponent, PropType, ComputedRef, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue'; import type { InstallType, ClassListInterface } from '../_interface'; import Skeleton from "./src/skeleton"; export declare const FSkeleton: InstallType<DefineComponent<{ readonly rounded: { readonly type: BooleanConstructor; readonly default: () => boolean; }; readonly animated: { readonly type: BooleanConstructor; readonly default: () => boolean; }; readonly circled: { readonly type: BooleanConstructor; readonly default: () => boolean; }; readonly rows: { readonly type: NumberConstructor; readonly default: () => number; }; readonly loading: { readonly type: BooleanConstructor; readonly default: () => boolean; }; readonly size: { readonly type: PropType<SkeletonSizeType>; readonly default: () => SkeletonSizeType; readonly validator: (val: SkeletonSizeType) => boolean; }; }, { prop: { readonly rounded?: unknown; readonly animated?: unknown; readonly circled?: unknown; readonly rows?: unknown; readonly loading?: unknown; readonly size?: unknown; } & { size: SkeletonSizeType; loading: boolean; rounded: boolean; animated: boolean; circled: boolean; rows: number; } & {}; classList: ComputedRef<ClassListInterface>; isRender: ComputedRef<boolean>; }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{ readonly rounded?: unknown; readonly animated?: unknown; readonly circled?: unknown; readonly rows?: unknown; readonly loading?: unknown; readonly size?: unknown; } & { size: SkeletonSizeType; loading: boolean; rounded: boolean; animated: boolean; circled: boolean; rows: number; } & {}>, { size: SkeletonSizeType; loading: boolean; rounded: boolean; animated: boolean; circled: boolean; rows: number; }>>; export declare type SkeletonInstance = InstanceType<typeof Skeleton>; export * from './src/interface.d'; export default Skeleton;