empty.mjs 289 B

12345678910111213141516
  1. import { buildProps } from '../../../utils/vue/props/runtime.mjs';
  2. const emptyProps = buildProps({
  3. image: {
  4. type: String,
  5. default: ""
  6. },
  7. imageSize: Number,
  8. description: {
  9. type: String,
  10. default: ""
  11. }
  12. });
  13. export { emptyProps };
  14. //# sourceMappingURL=empty.mjs.map