container.vue.d.ts 1.2 KB

123456789101112131415161718192021222324252627
  1. declare var __VLS_1: {};
  2. type __VLS_Slots = {} & {
  3. default?: (props: typeof __VLS_1) => any;
  4. };
  5. declare const __VLS_base: import("vue").DefineComponent<{
  6. readonly direction: {
  7. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "horizontal" | "vertical", unknown>>;
  8. readonly required: false;
  9. readonly validator: ((val: unknown) => boolean) | undefined;
  10. __epPropKey: true;
  11. };
  12. }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
  13. readonly direction: {
  14. readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "horizontal" | "vertical", unknown>>;
  15. readonly required: false;
  16. readonly validator: ((val: unknown) => boolean) | undefined;
  17. __epPropKey: true;
  18. };
  19. }>>, {}, {}>;
  20. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  21. declare const _default: typeof __VLS_export;
  22. export default _default;
  23. type __VLS_WithSlots<T, S> = T & {
  24. new (): {
  25. $slots: S;
  26. };
  27. };