empty.vue.d.ts 1.3 KB

123456789101112131415161718192021222324
  1. declare function __VLS_template(): {
  2. image?(_: {}): any;
  3. description?(_: {}): any;
  4. default?(_: {}): any;
  5. };
  6. declare const __VLS_component: import("vue").DefineComponent<{
  7. readonly image: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  8. readonly imageSize: NumberConstructor;
  9. readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  10. }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  11. readonly image: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  12. readonly imageSize: NumberConstructor;
  13. readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
  14. }>>, {
  15. readonly image: string;
  16. readonly description: string;
  17. }>;
  18. declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
  19. export default _default;
  20. type __VLS_WithTemplateSlots<T, S> = T & {
  21. new (): {
  22. $slots: S;
  23. };
  24. };