Empty.d.ts 1.1 KB

1234567891011121314151617181920212223242526272829
  1. import { type PropType, type ExtractPropTypes } from 'vue';
  2. import { Numeric } from '../utils';
  3. export 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 type EmptyProps = ExtractPropTypes<typeof emptyProps>;
  12. declare const _default: import("vue").DefineComponent<ExtractPropTypes<{
  13. image: {
  14. type: PropType<string>;
  15. default: string;
  16. };
  17. imageSize: PropType<Numeric | [Numeric, Numeric]>;
  18. description: StringConstructor;
  19. }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
  20. image: {
  21. type: PropType<string>;
  22. default: string;
  23. };
  24. imageSize: PropType<Numeric | [Numeric, Numeric]>;
  25. description: StringConstructor;
  26. }>> & Readonly<{}>, {
  27. image: string;
  28. }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
  29. export default _default;