types(ImagePreview): fix missing closeable option

This commit is contained in:
chenjiahan 2020-03-01 19:59:49 +08:00
parent 3237e56561
commit d5438dfe0d
2 changed files with 5 additions and 2 deletions

View File

@ -15,13 +15,13 @@ const defaultConfig = {
onChange: null, onChange: null,
lazyLoad: false, lazyLoad: false,
showIndex: true, showIndex: true,
closeable: false,
closeIcon: 'clear',
asyncClose: false, asyncClose: false,
startPosition: 0, startPosition: 0,
swipeDuration: 500, swipeDuration: 500,
showIndicators: false, showIndicators: false,
closeOnPopstate: false, closeOnPopstate: false,
closeable: false,
closeIcon: 'clear',
closeIconPosition: 'top-right', closeIconPosition: 'top-right',
}; };

View File

@ -10,11 +10,14 @@ export type ImagePreviewOptions =
className?: any; className?: any;
lazyLoad?: boolean; lazyLoad?: boolean;
showIndex?: boolean; showIndex?: boolean;
closeable?: boolean;
closeIcon?: string;
asyncClose?: boolean; asyncClose?: boolean;
swipeDuration?: number; swipeDuration?: number;
startPosition?: number; startPosition?: number;
showIndicators?: boolean; showIndicators?: boolean;
closeOnPopstate?: boolean; closeOnPopstate?: boolean;
closeIconPosition?: string;
onClose?: () => void; onClose?: () => void;
onChange?: (index: number) => void; onChange?: (index: number) => void;
}; };