descriptions-cell.d.ts 970 B

12345678910111213141516171819202122232425262728293031
  1. import type { PropType } from 'vue';
  2. import type { IDescriptionsInject } from './descriptions.type';
  3. import type { DescriptionItemVNode } from './description-item';
  4. declare const _default: import("vue").DefineComponent<{
  5. cell: {
  6. type: PropType<DescriptionItemVNode>;
  7. };
  8. tag: {
  9. type: StringConstructor;
  10. default: string;
  11. };
  12. type: {
  13. type: StringConstructor;
  14. };
  15. }, {
  16. descriptions: IDescriptionsInject;
  17. }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  18. cell: {
  19. type: PropType<DescriptionItemVNode>;
  20. };
  21. tag: {
  22. type: StringConstructor;
  23. default: string;
  24. };
  25. type: {
  26. type: StringConstructor;
  27. };
  28. }>>, {
  29. tag: string;
  30. }>;
  31. export default _default;