UNPKG

tdesign-mobile-vue

Version:
39 lines (36 loc) 697 B
/** * tdesign v1.7.0 * (c) 2024 TDesign Group * @license MIT */ var SkeletonProps = { animation: { type: String, default: "none", validator: function validator(val) { if (!val) return true; return ["gradient", "flashed", "none"].includes(val); } }, delay: { type: Number, default: 0 }, loading: { type: Boolean, default: true }, rowCol: { type: Array }, theme: { type: String, default: "text", validator: function validator(val) { if (!val) return true; return ["avatar", "image", "text", "paragraph"].includes(val); } } }; export { SkeletonProps as default }; //# sourceMappingURL=props.js.map