Files
dsProject/dsBase/WebRoot/html/cdn/lib/components/image-viewer/src/image-viewer.d.ts
2025-08-14 15:45:08 +08:00

15 lines
1.0 KiB
TypeScript

import type { ExtractPropTypes } from 'vue';
export declare const imageViewerProps: {
readonly urlList: import("element-plus/es/utils/props").BuildPropReturn<import("element-plus/es/utils/props").PropWrapper<string[]>, () => [], unknown, unknown, unknown>;
readonly zIndex: import("element-plus/es/utils/props").BuildPropReturn<NumberConstructor, 2000, unknown, unknown, unknown>;
readonly initialIndex: import("element-plus/es/utils/props").BuildPropReturn<NumberConstructor, 0, unknown, unknown, unknown>;
readonly infinite: import("element-plus/es/utils/props").BuildPropReturn<BooleanConstructor, true, unknown, unknown, unknown>;
readonly hideOnClickModal: import("element-plus/es/utils/props").BuildPropReturn<BooleanConstructor, false, unknown, unknown, unknown>;
};
export declare type ImageViewerProps = ExtractPropTypes<typeof imageViewerProps>;
export declare const imageViewerEmits: {
close: () => boolean;
switch: (index: number) => boolean;
};
export declare type ImageViewerEmits = typeof imageViewerEmits;