@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
27 lines (26 loc) • 1.1 kB
TypeScript
/**
* A component for indicating initial data is loading. Compose multiple skeleton loaders to generate a loader matching
* the shape of the content to be loaded.
*/
declare const _default: import("vue").DefineComponent<{
/**
* The count of skeleton loaders to render. The size of the skeleton loaders depends on the parent container. The
* skeleton loaders will split the container evenly vertically.
*/
count: {
type: NumberConstructor;
default: number;
};
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* The count of skeleton loaders to render. The size of the skeleton loaders depends on the parent container. The
* skeleton loaders will split the container evenly vertically.
*/
count: {
type: NumberConstructor;
default: number;
};
}>>, {
count: number;
}, {}>;
export default _default;