Item.d.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import type { CSSProperties, ExtractPropTypes, PropType } from 'vue';
  2. import type { ListGridType } from '.';
  3. import type { CustomSlotsType } from '../_util/type';
  4. export declare const listItemProps: () => {
  5. prefixCls: StringConstructor;
  6. extra: import("vue-types").VueTypeValidableDef<any>;
  7. actions: import("vue-types").VueTypeValidableDef<unknown[]> & {
  8. default: () => unknown[];
  9. };
  10. grid: PropType<ListGridType>;
  11. colStyle: {
  12. type: PropType<CSSProperties>;
  13. default: CSSProperties;
  14. };
  15. };
  16. export type ListItemProps = Partial<ExtractPropTypes<ReturnType<typeof listItemProps>>>;
  17. declare const _default: import("vue").DefineComponent<{
  18. prefixCls: StringConstructor;
  19. extra: import("vue-types").VueTypeValidableDef<any>;
  20. actions: import("vue-types").VueTypeValidableDef<unknown[]> & {
  21. default: () => unknown[];
  22. };
  23. grid: PropType<ListGridType>;
  24. colStyle: {
  25. type: PropType<CSSProperties>;
  26. default: CSSProperties;
  27. };
  28. }, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
  29. prefixCls: StringConstructor;
  30. extra: import("vue-types").VueTypeValidableDef<any>;
  31. actions: import("vue-types").VueTypeValidableDef<unknown[]> & {
  32. default: () => unknown[];
  33. };
  34. grid: PropType<ListGridType>;
  35. colStyle: {
  36. type: PropType<CSSProperties>;
  37. default: CSSProperties;
  38. };
  39. }>>, {
  40. actions: unknown[];
  41. colStyle: CSSProperties;
  42. }, CustomSlotsType<{
  43. actions: any;
  44. extra: any;
  45. default: any;
  46. }>>;
  47. export default _default;