7 lines
294 B
TypeScript
7 lines
294 B
TypeScript
import { ComponentInstance } from '../utils';
|
|
import type { ImagePreviewOptions } from './types';
|
|
/**
|
|
* Display a full-screen image preview component
|
|
*/
|
|
export declare const showImagePreview: (options: string[] | ImagePreviewOptions, startPosition?: number) => ComponentInstance | undefined;
|