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,
lazyLoad: false,
showIndex: true,
closeable: false,
closeIcon: 'clear',
asyncClose: false,
startPosition: 0,
swipeDuration: 500,
showIndicators: false,
closeOnPopstate: false,
closeable: false,
closeIcon: 'clear',
closeIconPosition: 'top-right',
};

View File

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