empty.vue.d.ts 1.3 KB

12345678910111213141516171819202122232425262728
  1. declare var __VLS_1: {}, __VLS_7: {}, __VLS_9: {};
  2. type __VLS_Slots = {} & {
  3. image?: (props: typeof __VLS_1) => any;
  4. } & {
  5. description?: (props: typeof __VLS_7) => any;
  6. } & {
  7. default?: (props: typeof __VLS_9) => any;
  8. };
  9. declare const __VLS_base: import("vue").DefineComponent<{
  10. readonly image: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  11. readonly imageSize: NumberConstructor;
  12. readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  13. }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
  14. readonly image: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  15. readonly imageSize: NumberConstructor;
  16. readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  17. }>>, {
  18. readonly image: string;
  19. readonly description: string;
  20. }, {}>;
  21. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  22. declare const _default: typeof __VLS_export;
  23. export default _default;
  24. type __VLS_WithSlots<T, S> = T & {
  25. new (): {
  26. $slots: S;
  27. };
  28. };