You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
917 B

3 months ago
  1. declare function __VLS_template(): {
  2. default?(_: {}): any;
  3. };
  4. declare const __VLS_component: import("vue").DefineComponent<{
  5. /**
  6. * @description height of the header
  7. */
  8. height: {
  9. type: StringConstructor;
  10. default: null;
  11. };
  12. }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  13. /**
  14. * @description height of the header
  15. */
  16. height: {
  17. type: StringConstructor;
  18. default: null;
  19. };
  20. }>>, {
  21. height: string;
  22. }>;
  23. declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
  24. export default _default;
  25. type __VLS_WithTemplateSlots<T, S> = T & {
  26. new (): {
  27. $slots: S;
  28. };
  29. };