function-call.d.ts 294 B

123456
  1. import { ComponentInstance } from '../utils';
  2. import type { ImagePreviewOptions } from './types';
  3. /**
  4. * Display a full-screen image preview component
  5. */
  6. export declare const showImagePreview: (options: string[] | ImagePreviewOptions, startPosition?: number) => ComponentInstance | undefined;