index.d.ts 419 B

1234567891011
  1. import { ImagePreview } from './function-call';
  2. import type { ImagePreviewProps } from './ImagePreview';
  3. export default ImagePreview;
  4. export { ImagePreview };
  5. export type { ImagePreviewProps };
  6. export type { ImagePreviewOptions, ImagePreviewInstance, ImagePreviewScaleEventParams, } from './types';
  7. declare module 'vue' {
  8. interface GlobalComponents {
  9. VanImagePreview: typeof ImagePreview.Component;
  10. }
  11. }