UNPKG

vue-hover-effect

Version:

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

34 lines (33 loc) 1.17 kB
import { SingleHoverEffectOptions } from '../libs/hover-effect/index.ts'; interface Props { hoverOptions?: SingleHoverEffectOptions; distortionClass?: string; } declare function goNext(): void; declare function goPrev(): void; declare function __VLS_template(): { attrs: Partial<{}>; slots: { controllers?(_: { funcs: { goNext: typeof goNext; goPrev: typeof goPrev; }; }): any; }; refs: { container: HTMLDivElement; }; rootEl: any; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { container: HTMLDivElement; }, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };