Item.d.ts 1.6 KB

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