UNPKG

311 BTypeScriptView Raw
1export interface FullScreenPreviewProps {
2 /**
3 * image source in string format
4 */
5 imgSource?: string;
6 /**
7 * boolean value. Whether to open the preview or not
8 */
9 openImage?: boolean;
10 /**
11 * handler for on Close operation
12 */
13 onClose?: Function;
14}