UNPKG

element-plus

Version:

A Component Library for Vue 3

69 lines (68 loc) 2.16 kB
import { ImageViewerAction } from "../../image-viewer/src/image-viewer.js"; import "../../image-viewer/index.js"; import { ImageFitType, ImageProps } from "./image.js"; import * as vue from "vue"; //#region ../../packages/components/image/src/image.vue.d.ts declare function clickHandler(): void; declare var __VLS_1: {}, __VLS_3: {}, __VLS_14: {}, __VLS_17: { activeIndex: number; total: number; }, __VLS_20: { actions: (action: ImageViewerAction, options?: {}) => void; prev: () => void; next: () => void; reset: () => void; activeIndex: number; setActiveItem: (index: number) => void; }, __VLS_23: { activeIndex: number; src: string; }; type __VLS_Slots = {} & { error?: (props: typeof __VLS_1) => any; } & { placeholder?: (props: typeof __VLS_3) => any; } & { viewer?: (props: typeof __VLS_14) => any; } & { progress?: (props: typeof __VLS_17) => any; } & { toolbar?: (props: typeof __VLS_20) => any; } & { 'viewer-error'?: (props: typeof __VLS_23) => any; }; declare const __VLS_base: vue.DefineComponent<ImageProps, { /** @description manually open preview */showPreview: typeof clickHandler; }, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, { close: () => void; error: (evt: Event) => void; load: (evt: Event) => void; show: () => void; switch: (val: number) => void; }, string, vue.PublicProps, Readonly<ImageProps> & Readonly<{ onClose?: (() => any) | undefined; onError?: ((evt: Event) => any) | undefined; onLoad?: ((evt: Event) => any) | undefined; onShow?: (() => any) | undefined; onSwitch?: ((val: number) => any) | undefined; }>, { scale: number; infinite: boolean; closeOnPressEscape: boolean; initialIndex: number; src: string; fit: ImageFitType; previewSrcList: string[]; zoomRate: number; minScale: number; maxScale: number; }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>; declare const _default: typeof __VLS_export; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; }; //#endregion export { _default };