maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
11 lines (10 loc) • 383 B
TypeScript
import { Plugin } from 'vue';
import { VZoomImgDirective, vZoomImg } from './vZoomImg/zoom-img.directive';
declare const plugin: Plugin;
export { vZoomImg, type VZoomImgDirective, plugin as vZoomImgInstall };
export type { VZoomImgBindingValue } from './vZoomImg/zoom-img.handler';
declare module 'vue' {
interface GlobalDirectives {
vZoomImg: VZoomImgDirective;
}
}