Empty.d.ts 1.0 KB

1234567891011121314151617181920212223242526272829
  1. import { type PropType, type ExtractPropTypes } from 'vue';
  2. import { Numeric } from '../utils';
  3. declare const emptyProps: {
  4. image: {
  5. type: PropType<string>;
  6. default: string;
  7. };
  8. imageSize: PropType<Numeric | [Numeric, Numeric]>;
  9. description: StringConstructor;
  10. };
  11. export declare type EmptyProps = ExtractPropTypes<typeof emptyProps>;
  12. declare const _default: import("vue").DefineComponent<{
  13. image: {
  14. type: PropType<string>;
  15. default: string;
  16. };
  17. imageSize: PropType<Numeric | [Numeric, Numeric]>;
  18. description: StringConstructor;
  19. }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
  20. image: {
  21. type: PropType<string>;
  22. default: string;
  23. };
  24. imageSize: PropType<Numeric | [Numeric, Numeric]>;
  25. description: StringConstructor;
  26. }>>, {
  27. image: string;
  28. }>;
  29. export default _default;