backtop.vue.d.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. declare function __VLS_template(): {
  2. default?(_: {}): any;
  3. };
  4. declare const __VLS_component: import("vue").DefineComponent<{
  5. readonly visibilityHeight: {
  6. readonly type: NumberConstructor;
  7. readonly default: 200;
  8. };
  9. readonly target: {
  10. readonly type: StringConstructor;
  11. readonly default: "";
  12. };
  13. readonly right: {
  14. readonly type: NumberConstructor;
  15. readonly default: 40;
  16. };
  17. readonly bottom: {
  18. readonly type: NumberConstructor;
  19. readonly default: 40;
  20. };
  21. }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
  22. click: (evt: MouseEvent) => void;
  23. }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
  24. readonly visibilityHeight: {
  25. readonly type: NumberConstructor;
  26. readonly default: 200;
  27. };
  28. readonly target: {
  29. readonly type: StringConstructor;
  30. readonly default: "";
  31. };
  32. readonly right: {
  33. readonly type: NumberConstructor;
  34. readonly default: 40;
  35. };
  36. readonly bottom: {
  37. readonly type: NumberConstructor;
  38. readonly default: 40;
  39. };
  40. }>> & {
  41. onClick?: ((evt: MouseEvent) => any) | undefined;
  42. }, {
  43. readonly right: number;
  44. readonly bottom: number;
  45. readonly target: string;
  46. readonly visibilityHeight: number;
  47. }>;
  48. declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
  49. export default _default;
  50. type __VLS_WithTemplateSlots<T, S> = T & {
  51. new (): {
  52. $slots: S;
  53. };
  54. };