description.vue.d.ts 930 B

12345678910111213141516171819202122232425
  1. import { DescriptionProps } from "./description.js";
  2. import * as _$vue from "vue";
  3. //#region ../../packages/components/descriptions/src/description.vue.d.ts
  4. declare var __VLS_1: {}, __VLS_3: {};
  5. type __VLS_Slots = {} & {
  6. title?: (props: typeof __VLS_1) => any;
  7. } & {
  8. extra?: (props: typeof __VLS_3) => any;
  9. };
  10. declare const __VLS_base: _$vue.DefineComponent<DescriptionProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<DescriptionProps> & Readonly<{}>, {
  11. column: number;
  12. title: string;
  13. direction: "horizontal" | "vertical";
  14. extra: string;
  15. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
  16. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  17. declare const _default: typeof __VLS_export;
  18. type __VLS_WithSlots<T, S> = T & {
  19. new (): {
  20. $slots: S;
  21. };
  22. };
  23. //#endregion
  24. export { _default as default };