ItemMeta.d.ts 1.2 KB

1234567891011121314151617181920212223242526
  1. import type { ExtractPropTypes } from 'vue';
  2. import type { CustomSlotsType } from '../_util/type';
  3. export declare const listItemMetaProps: () => {
  4. avatar: import("vue-types").VueTypeValidableDef<any>;
  5. description: import("vue-types").VueTypeValidableDef<any>;
  6. prefixCls: StringConstructor;
  7. title: import("vue-types").VueTypeValidableDef<any>;
  8. };
  9. export type ListItemMetaProps = Partial<ExtractPropTypes<ReturnType<typeof listItemMetaProps>>>;
  10. declare const _default: import("vue").DefineComponent<{
  11. avatar: import("vue-types").VueTypeValidableDef<any>;
  12. description: import("vue-types").VueTypeValidableDef<any>;
  13. prefixCls: StringConstructor;
  14. title: import("vue-types").VueTypeValidableDef<any>;
  15. }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
  16. avatar: import("vue-types").VueTypeValidableDef<any>;
  17. description: import("vue-types").VueTypeValidableDef<any>;
  18. prefixCls: StringConstructor;
  19. title: import("vue-types").VueTypeValidableDef<any>;
  20. }>>, {}, CustomSlotsType<{
  21. avatar: any;
  22. description: any;
  23. title: any;
  24. default: any;
  25. }>>;
  26. export default _default;