react-modal-image
react-modal-image copied to clipboard
onClose property is not exist/exposed in Lightbox component with TS
The solution could be toadd
export type LightboxProps = {
onClose?: () => void;
} & ModalImageProps;
declare class Lightbox extends React.Component<LightboxProps > {}
to this file https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react-modal-image/index.d.ts
any commit update for the solution?