maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
13 lines (12 loc) • 499 B
TypeScript
import { Plugin } from 'vue';
import { VLazyImgDirective } from './vLazyImg/lazy-img.directive';
import { VLazyImgOptions } from './vLazyImg/types';
declare const plugin: Plugin<[VLazyImgOptions?]>;
export { vLazyImg, type VLazyImgDirective } from './vLazyImg/lazy-img.directive';
export { plugin as vLazyImgInstall };
export type { VLazyImgBindingValue, VLazyImgOptions } from './vLazyImg/types';
declare module 'vue' {
interface GlobalDirectives {
vLazyImg: VLazyImgDirective;
}
}